export interface ShellCommandResult {
    stdout: string;
    stderr: string;
}
export interface ShellCommandOptions {
    trimOutput?: boolean;
    cwd?: string;
    timeout?: number;
}
export declare function executeShellCommand(command: string, { trimOutput, cwd, timeout }?: ShellCommandOptions): Promise<ShellCommandResult>;
