export interface McpToolResult { content: Array<{ type: "text"; text: string; }>; isError?: boolean; } type ToolArgs = Record; type ToolHandler = (args: ToolArgs, projectRoot: string, toolDir: string) => Promise; export declare const CJS_HANDLERS: Record; export {};