export type RawPayoutRequest = Readonly<{ payoutId: string; amount: number; currency: string; iban: string; reference?: string; }>; export type RawPayoutStatus = 'pending' | 'paid' | 'failed'; export type RawPayoutErrorCode = 'validation' | 'declined' | 'network' | 'native_unavailable' | 'unknown'; export type RawPayoutError = Readonly<{ code: RawPayoutErrorCode; message: string; details?: Readonly>; }>; export type RawPayoutRecord = Readonly<{ payoutId: string; amount: number; currency: string; iban: string; reference?: string; status: RawPayoutStatus; estimatedArrivalDate?: string; }>; //# sourceMappingURL=types.d.ts.map