import { Command } from '@oclif/core'; export default class Update extends Command { static description: string; static enableJsonFlag: boolean; static flags: { themeId: import("@oclif/core/lib/interfaces").OptionFlag; replaceSettings: import("@oclif/core/lib/interfaces").BooleanFlag; }; static args: { name: string; required: boolean; default: string; }[]; static examples: string[]; static strict: boolean; run(): Promise<{ themeId: any; }>; }