import { Command } from '@oclif/command'; export default class DelegateBandwidth extends Command { static description: string; static hidden: boolean; static flags: { transfer: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; required: boolean; }[]; run(): Promise; }