import { CommandFlags, Command, flags } from '../utils/command'; interface BuildFlags extends CommandFlags { config: string; watch?: boolean; } export default class Build extends Command { static description: string; static flags: { config: flags.IOptionFlag; watch: import("@oclif/parser/lib/flags").IBooleanFlag; silent: import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; private startWatching; private build; } export {};