import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Amount = { /** * A 3-letter ISO 4217 currency code. */ currency: string; /** * 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; }; /** @internal */ export declare const Amount$inboundSchema: z.ZodType; /** @internal */ export type Amount$Outbound = { currency: string; value: number; }; /** @internal */ export declare const Amount$outboundSchema: z.ZodType; export declare function amountToJSON(amount: Amount): string; export declare function amountFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=amount.d.ts.map