import type { SupportedCurrencies } from './Contract'; export type BankExport = { cancellationCause: string | null; createdAt: string; currency: SupportedCurrencies; id: string; payOutsCount: number; payOutsIds: string[]; privateToken: string; proofOfPayment: string; proofOfPaymentLink: string; state: 'in_progress' | 'done' | 'cancelled'; stateUpdatedAt: string; totalAmount: string; type: 'bankExport'; updatedAt: string; };