export declare function help(): string;
export interface Options {
cwd: string;
production: boolean;
verbose: boolean;
}
export declare function exec(args: string[], options: Options): Promise<void>;