import { BaseCommand } from '../../base-command.js'; /** * Initiates the purchase of a Plan requiring the payment in Fiat. This method will return a URL where the user can complete the payment. */ export default class OrderFiatPlan 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-fiat-plan.d.ts.map