export interface ExecAsyncOpts {
    cwd: string;
    stdio: 'inherit' | 'ignore' | 'pipe';
    verbose?: boolean;
}
export declare function exec(command: string, { verbose, ...opts }: ExecAsyncOpts): Promise<string>;
