import { flags, Command } from '@oclif/command'; export declare class Config extends Command { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; mode: flags.IOptionFlag; }; static args: { name: string; }[]; run(): Promise; updateConfigs(angularConfigPath: string, tsconfigConfigPath: string, mode: string): Promise<{}>; }