import { Command, flags } from '@oclif/command'; export default class DevRelease extends Command { static description: string; static aliases: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; start: import("@oclif/parser/lib/flags").IBooleanFlag; build: import("@oclif/parser/lib/flags").IBooleanFlag; retrieve: import("@oclif/parser/lib/flags").IBooleanFlag; deploy: import("@oclif/parser/lib/flags").IBooleanFlag; username: flags.IOptionFlag; version: flags.IOptionFlag; addFeature: flags.IOptionFlag; removeFeature: flags.IOptionFlag; }; static args: { name: string; }[]; run(): Promise; }