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<string | undefined>;
        replaceSettings: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
    };
    static args: {
        name: string;
        required: boolean;
        default: string;
    }[];
    static examples: string[];
    static strict: boolean;
    run(): Promise<{
        themeId: any;
    }>;
}
