import { z } from "zod"; export declare const fillPdfFormTool: { name: string; description: string; parameters: { inputFilePath: z.ZodString; outputFilePath: z.ZodString; formFields: z.ZodRecord>; }; handler: ({ inputFilePath, outputFilePath, formFields }: { inputFilePath: string; outputFilePath: string; formFields: Record; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export declare const getPdfFormElementsTool: { name: string; description: string; parameters: { filePath: z.ZodString; }; handler: ({ filePath }: { filePath: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; };