import { BaseCommand } from '../../base-command.js'; /** * Single-purpose delegation creation. Opens the chromeless * `/cards/delegate?paymentMethodId=` page of the standalone embed * app (`embed.`) where the user * fills in spending limit / duration / max-transactions and submits; * the resulting `delegationId` is redirected back to a localhost * callback. * * The combined `nevermined cards setup` flow is preferred for first-time * card setup; use this when the card already exists and only the * delegation needs to be (re-)created. */ export default class CardsDelegate extends BaseCommand { static description: string; static examples: string[]; static flags: { card: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; org: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'no-browser': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; 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=delegate.d.ts.map