import { z } from "zod";
import { BookstackTool } from "../bookstack/BookstackTool.js";
declare const schema: z.ZodObject<{
id: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
id: number;
}, {
id: number;
}>;
type ReadBookInput = z.infer<typeof schema>;
declare class BookstackReadBookTool extends BookstackTool<ReadBookInput> {
name: string;
description: string;
schema: z.ZodObject<{
id: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
id: number;
}, {
id: number;
}>;
execute(input: ReadBookInput): Promise<import("../bookstack/BookstackTool.js").ToolContent[]>;
}
export default BookstackReadBookTool;