import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Specifies a partial amount to refund. * * @remarks * * This request body is optional, an empty body will issue a refund for the full amount of the original transfer. */ export type CreateRefund = { /** * Amount to refund in cents. If null, the original transfer's full amount will be refunded. */ amount?: number | undefined; }; /** @internal */ export declare const CreateRefund$inboundSchema: z.ZodType; /** @internal */ export type CreateRefund$Outbound = { amount?: number | undefined; }; /** @internal */ export declare const CreateRefund$outboundSchema: z.ZodType; export declare function createRefundToJSON(createRefund: CreateRefund): string; export declare function createRefundFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createrefund.d.ts.map