export declare const shellTools: {
    name: string;
    description: string;
    input_schema: {
        type: string;
        properties: {
            command: {
                type: string;
                description: string;
            };
            cwd: {
                type: string;
                description: string;
            };
            timeout: {
                type: string;
                description: string;
            };
        };
        required: string[];
    };
    execute: ({ command, cwd, timeout }: {
        command: string;
        cwd?: string;
        timeout?: number;
    }) => Promise<{
        success: boolean;
        stdout: string;
        stderr: string;
        command: string;
        error?: undefined;
    } | {
        success: boolean;
        error: any;
        stdout: any;
        stderr: any;
        command: string;
    }>;
}[];
//# sourceMappingURL=shell.d.ts.map