import type { SupportedCurrencies } from './Contract'; export type PaymentTimeline = { amount: number; creditIds: string; currency: SupportedCurrencies; dueOn: string; payOutExportedOn: string; id: string; kind: 'deposit_out' | 'pay_out'; nthOfKind: number; payOutLabel: string; percentage: number | null; status: 'in_progress' | 'pending' | 'done'; type: 'timelineItem'; };