import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AmountUpdate = { /** * A 3-letter ISO 4217 currency code. */ currency?: string | undefined; /** * Quantity in the smallest unit of the specified currency. * * @remarks * * In USD this is cents, for example, $12.04 is 1204 and $0.99 is 99. */ value?: number | undefined; }; /** @internal */ export declare const AmountUpdate$inboundSchema: z.ZodType; /** @internal */ export type AmountUpdate$Outbound = { currency?: string | undefined; value?: number | undefined; }; /** @internal */ export declare const AmountUpdate$outboundSchema: z.ZodType; export declare function amountUpdateToJSON(amountUpdate: AmountUpdate): string; export declare function amountUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=amountupdate.d.ts.map