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