import { exec } from 'child_process';
export declare const execAsync: typeof exec.__promisify__;
/**
 * Execute a shell command asynchronously without context of the current directory
 * @param command command to execute
 * @returns
 */
export declare function executeCommand(command: string): Promise<any>;
export declare function log(message: string, ...optionalParams: any[]): void;
