import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateReversal = { /** * Amount to reverse in cents. Partial amounts will automatically trigger a refund instead of a cancellation. */ amount: number; }; /** @internal */ export declare const CreateReversal$inboundSchema: z.ZodType; /** @internal */ export type CreateReversal$Outbound = { amount: number; }; /** @internal */ export declare const CreateReversal$outboundSchema: z.ZodType; export declare function createReversalToJSON(createReversal: CreateReversal): string; export declare function createReversalFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createreversal.d.ts.map