import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CardAcquiringRefund, CardAcquiringRefund$Outbound } from "./cardacquiringrefund.js"; export type ReversedWithRefund = { /** * Details of a card refund. */ refund: CardAcquiringRefund; }; /** @internal */ export declare const ReversedWithRefund$inboundSchema: z.ZodType; /** @internal */ export type ReversedWithRefund$Outbound = { refund: CardAcquiringRefund$Outbound; }; /** @internal */ export declare const ReversedWithRefund$outboundSchema: z.ZodType; export declare function reversedWithRefundToJSON(reversedWithRefund: ReversedWithRefund): string; export declare function reversedWithRefundFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reversedwithrefund.d.ts.map