import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AsyncCreatedRefund, AsyncCreatedRefund$Outbound } from "./asynccreatedrefund.js"; import { CardAcquiringRefund, CardAcquiringRefund$Outbound } from "./cardacquiringrefund.js"; export type CreateRefundResponse = CardAcquiringRefund | AsyncCreatedRefund; /** @internal */ export declare const CreateRefundResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateRefundResponse$Outbound = CardAcquiringRefund$Outbound | AsyncCreatedRefund$Outbound; /** @internal */ export declare const CreateRefundResponse$outboundSchema: z.ZodType; export declare function createRefundResponseToJSON(createRefundResponse: CreateRefundResponse): string; export declare function createRefundResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createrefundresponse.d.ts.map