interface ExecOptions {
    cwd?: string;
    env?: any;
}
export declare function execute(command: string, args: string[], options?: ExecOptions, shell?: boolean): Promise<string>;
export declare function runGo(args: string[], options: ExecOptions, additionalGoCommands?: string[]): Promise<string>;
export {};
