import * as v from 'valibot'; import type { Database } from '../storage/db.js'; export declare function createGetDocPageTool(db: Database): { definition: { name: "get_doc_page"; description: string; schema: v.ObjectSchema<{ readonly url: v.OptionalSchema, v.DescriptionAction]>, undefined>; readonly library: v.OptionalSchema, v.DescriptionAction]>, undefined>; readonly path: v.OptionalSchema, v.DescriptionAction]>, undefined>; }, undefined>; }; handler: ({ url, library, path }: { url?: string; library?: string; path?: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; };