import { Argv } from 'yargs'; import { ContextOptions } from '../context'; export declare function clean({ cleanMask, projectDir, }: { cleanMask: string; projectDir: string; }): Promise; export declare const cleanCommand: { command: string; describe: string; handler: typeof clean; builder: (y: Argv) => Argv; };