export interface ExecutableCommand {
    executable: string;
    arguments?: string[];
    cwd?: string;
    throwOnFailure?: boolean;
    expectedErrorExitCodes?: number[];
    silent?: boolean;
}
export declare function executeCommand(command: ExecutableCommand): Promise<boolean>;
