import z from "zod"; import { orgOptsSchema } from "../utils.js"; export declare const orgBillingCommand: import("../lib/command").CommandDefinition<{ readonly org: { type: "string"; short: string; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[], null>; org: z.ZodOptional; }, z.core.$strict>> & import("../lib/command").Command; /** * Opens Stripe Billing Portal for the resolved organization. * * @param opts - Validated options selecting the organization. */ export declare function openBillingPortal(opts: z.infer): Promise; //# sourceMappingURL=org-billing.d.ts.map