declare type Argv = {
    compiler: string;
    project: string;
    watch: boolean;
    help: boolean;
    _?: string[];
};
declare const _default: (args?: Argv | undefined) => Promise<void>;
export = _default;
