import { BaseCommand } from '../../base-command.js'; /** * Mints expirable credits for a given Payment Plan and transfers them to a receiver. */ export default class MintPlanExpirable extends BaseCommand { static description: string; static examples: string[]; static flags: { 'credits-amount': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'credits-receiver': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'credits-duration': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 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=mint-plan-expirable.d.ts.map