import { Argv } from 'yargs'; import { ContextOptions } from '../context'; import { makeAssets } from './makeAssets'; export declare function watch({ target, assetMask, srcDir, outDir, projectDir, }: ContextOptions & Parameters[0] & { target: string; }): Promise; export declare const watchCommand: { command: string; describe: string; handler: typeof watch; builder: (y: Argv) => Argv; };