export { buildProjectTree } from "./search-utils.js"; export interface ToolCall { name: string; arguments: Record; } export declare function executeToolCall(call: ToolCall, dir: string): Promise;