import type { ToolResult } from "../types.js"; export interface PdfToolRunOptions { signal?: AbortSignal | undefined; onOutput?: ((chunk: string, stream: "stdout" | "stderr") => void) | undefined; } export declare function pdfRead(args: Record, options?: PdfToolRunOptions): Promise;