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