export interface ToolRunnerIO { write: (line: string) => void; writeError: (line: string) => void; } /** * Resolve the AI author for tracked-change emission from SAFE_DOCX_AI_AUTHOR. * Empty string disables tracked emission (legacy behavior); unset defaults to 'SafeDocX'. * Symmetric with the resolution in server.ts. */ export declare function resolveCliAiAuthor(): string | null; export declare function runToolCommand(toolName: string, args: Record, opts: ToolRunnerIO): Promise; //# sourceMappingURL=tool_runner.d.ts.map