import * as z from "zod/v4-mini"; import { PolarError } from "./polarerror.js"; export type SubscriptionLockedData = { error: "SubscriptionLocked"; detail: string; }; export declare class SubscriptionLocked extends PolarError { error: "SubscriptionLocked"; detail: string; /** The original data that was passed to this error instance. */ data$: SubscriptionLockedData; constructor(err: SubscriptionLockedData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const SubscriptionLocked$inboundSchema: z.ZodMiniType; //# sourceMappingURL=subscriptionlocked.d.ts.map