import type { AgentTool } from "@mariozechner/pi-agent-core"; import { type Static, Type } from "typebox"; import type { ToolRenderer } from "./types.js"; declare const extractDocumentSchema: Type.TObject<{ url: Type.TString; }>; export type ExtractDocumentParams = Static; export interface ExtractDocumentResult { extractedText: string; format: string; fileName: string; size: number; } export declare function createExtractDocumentTool(): AgentTool & { corsProxyUrl?: string; }; export declare const extractDocumentTool: AgentTool, ExtractDocumentResult> & { corsProxyUrl?: string; }; export declare const extractDocumentRenderer: ToolRenderer; export {}; //# sourceMappingURL=extract-document.d.ts.map