import { BaseCommand } from '../../base-command.js'; /** * Orders a Payment Plan requiring the payment in crypto. The user must have enough balance in the selected token. */ export default class OrderPlan extends BaseCommand { static description: string; static examples: string[]; static flags: { profile: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; format: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; verbose: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; static args: { plan: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; run(): Promise; } //# sourceMappingURL=order-plan.d.ts.map