import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AlreadyActiveSubscriptionError } from "./alreadyactivesubscriptionerror.js"; import { NotOpenCheckout } from "./notopencheckout.js"; import { PaymentNotReady } from "./paymentnotready.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; import { TrialAlreadyRedeemed } from "./trialalreadyredeemed.js"; export type CheckoutForbiddenError = AlreadyActiveSubscriptionError | NotOpenCheckout | PaymentNotReady | TrialAlreadyRedeemed; /** @internal */ export declare const CheckoutForbiddenError$inboundSchema: z.ZodMiniType; export declare function checkoutForbiddenErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=checkoutforbiddenerror.d.ts.map