/** * `bitmagic subscribe` — start (or finish) a Bitmagic Pro subscription. * * `login` already runs this flow for a creator who has not subscribed, so this * command exists for the second attempt: someone who closed the tab, whose card * was declined, or whose subscription has since lapsed. Same code path, so the * recovery looks exactly like the first run rather than being a differently-worded * special case. * * It opens the Bitmagic Pro storefront, which sells a subscription AND redeems a * Pro voucher — so this is the command to reach for with a comped-Pro code too. */ export declare const subscribeCommand: import("citty").CommandDef<{ readonly env: { readonly type: "string"; readonly description: "Environment to subscribe in (dev, prod, local)."; }; readonly 'no-wait': { readonly type: "boolean"; readonly description: "Open the Bitmagic Pro page and exit instead of waiting for it to complete."; }; readonly json: { readonly type: "boolean"; readonly description: "Print the result as JSON on stdout; all progress goes to stderr."; }; }>;