import { z } from "zod";
export declare const fillPdfFormTool: {
    name: string;
    description: string;
    parameters: {
        inputFilePath: z.ZodString;
        outputFilePath: z.ZodString;
        formFields: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>;
    };
    handler: ({ inputFilePath, outputFilePath, formFields }: {
        inputFilePath: string;
        outputFilePath: string;
        formFields: Record<string, string | boolean | number>;
    }) => 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;
        }[];
    }>;
};
