import type { SupportedCurrencies } from './Contract'; export type ExpectedPayOut = { id: string; amount: string; currency: SupportedCurrencies; dueOn: string; kind: 'deposit_out_flywire' | 'deposit_out_sharegroop' | 'deposit_out' | 'extra_pay_out' | 'overpayment_out' | 'owner_refund_out' | 'pay_out'; nthOfKind: number | null; payInSource: 'flywire' | 'sharegroop_imprint' | 'stripe' | 'wiretransfer'; };