import * as z from "zod/v3"; export type PazeTransactionValue = { /** * ISO 4217 currency code of the transaction. */ transactionCurrency: string; /** * Amount of the transaction including dollar and cents, e.g. '99.95'. */ transactionAmount: string; }; /** @internal */ export type PazeTransactionValue$Outbound = { transactionCurrency: string; transactionAmount: string; }; /** @internal */ export declare const PazeTransactionValue$outboundSchema: z.ZodType; export declare function pazeTransactionValueToJSON(pazeTransactionValue: PazeTransactionValue): string; //# sourceMappingURL=pazetransactionvalue.d.ts.map