import { BaseCommand } from '../../base-command.js'; /** * Single-purpose card enrolment. Opens the chromeless * `/cards/enroll` page of the standalone embed app (`embed.`) * in the browser, completes the * tokenization step against the chosen provider, and redirects the * resulting `paymentMethodId` back to a localhost callback. * * For the common case of "add a card AND a delegation in one flow", * use `nevermined cards setup` instead — the combined command emits both IDs * in a single callback. */ export default class CardsEnroll extends BaseCommand { static description: string; static examples: string[]; static flags: { org: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'no-browser': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; provider: 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=enroll.d.ts.map