import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Amount, Amount$Outbound } from "./amount.js"; /** * Asynchronous refund response */ export type AsyncCreatedRefund = { refundID: string; createdOn: Date; amount: Amount; }; /** @internal */ export declare const AsyncCreatedRefund$inboundSchema: z.ZodType; /** @internal */ export type AsyncCreatedRefund$Outbound = { refundID: string; createdOn: string; amount: Amount$Outbound; }; /** @internal */ export declare const AsyncCreatedRefund$outboundSchema: z.ZodType; export declare function asyncCreatedRefundToJSON(asyncCreatedRefund: AsyncCreatedRefund): string; export declare function asyncCreatedRefundFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=asynccreatedrefund.d.ts.map