import { Command, flags } from '@oclif/command'; export declare class Convert extends Command { static description: string; static examples: string[]; static flags: { from: flags.IOptionFlag; to: flags.IOptionFlag; }; static args: { name: string; options: string[]; required: boolean; }[]; run(): Promise; }