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