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