import { BaseCommand } from '../../base-command.js'; /** * It allows to an AI Builder to create a Trial Payment Plan on Nevermined limited by duration. A Nevermined Trial Plan allow subscribers of that plan to test the Agents associated to it. A Trial plan is a plan that only can be purchased once by a user. Trial plans, as regular plans, can be limited by duration (i.e 1 week of usage) or by credits (i.e 100 credits to use the agent). */ export default class RegisterTimeTrialPlan 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-trial-plan.d.ts.map