import { BaseCommand } from '../../base-command.js'; /** * It allows to an AI Builder to create a Payment Plan on Nevermined limited by duration. A Nevermined Credits Plan limits the access by the access/usage of the Plan. With them, AI Builders control the number of requests that can be made to an agent or service. Every time a user accesses any resouce associated to the Payment Plan, the usage consumes from a capped amount of credits. When the user consumes all the credits, the plan automatically expires and the user needs to top up to continue using the service. */ export default class RegisterTimePlan extends BaseCommand { static description: string; static examples: string[]; static flags: { 'plan-metadata': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'price-config': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'credits-config': 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; }; run(): Promise; } //# sourceMappingURL=register-time-plan.d.ts.map