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