export interface RunCommandOptions {
    command: string;
    args: string[];
    cwd: string;
    envs: NodeJS.ProcessEnv;
}
export interface RunCommandResult {
    exitCode: number;
    stdout: Buffer;
    stderr: Buffer;
}
export declare function runCommandSilently(options: RunCommandOptions): Promise<RunCommandResult>;
export declare function runCommand(options: RunCommandOptions): Promise<number>;
