import { z } from "zod";
import { AgentActionDefinition } from "../../types";
export declare const PDFAction: z.ZodObject<{
    pdfUrl: z.ZodString;
    prompt: z.ZodString;
}, z.core.$strip>;
export type PDFActionType = z.infer<typeof PDFAction>;
export declare const PDFActionDefinition: AgentActionDefinition;
