export declare const execCommandTool: { name: string; description: string; inputSchema: { type: "object"; properties: { command: { type: string; description: string; }; cwd: { type: string; description: string; }; timeout: { type: string; description: string; }; }; required: string[]; }; }; export declare function executeExecCommand(args: { command: string; cwd?: string; timeout?: number; }): Promise; //# sourceMappingURL=execCommand.d.ts.map