import { ExecaSyncReturnValue } from 'execa';
/**
 *
 * Spawns a new process
 *
 */
export declare function spawnChild(pkg: string): ExecaSyncReturnValue;
export declare function runCommand(command: any, args?: any[]): Promise<void>;
