declare type CURRENT_PAYLOAD_VERSION = '1.2.0'; export interface Payload { version: CURRENT_PAYLOAD_VERSION; accountId: string; amounts: PayloadAmounts[]; nonceHold: string; nonceSettle: string; } export interface PayloadAmounts { accountId: string; sendAmount: string; sendCurrency: string; receiveAmount: string; receiveCurrency: string; sendSubtotal: string; fees?: { feeType: string; feeAmount: string; }[]; } export {}; //# sourceMappingURL=payload.d.ts.map