import { Command, flags } from '@oclif/command';
export default class Bitrix extends Command {
static description: string;
static args: {
name: string;
}[];
static flags: {
config: flags.IOptionFlag<string | undefined>;
};
static examples: string[];
run(): Promise<void>;
}