type Transaction = { type: 'income' | 'expense'; online: boolean; cashboxId: string; financeitemId: string; onlinePaymentId: string; partnerId: string; amount: number; actualAmount: number; commissionAmount: number; balance: number; comment: string; fee: number; source: 'user' | 'widget' | 'agregator' | 'client'; status: 'accepted' | 'canceled' | 'pending'; certificateId?: string; orderId?: string; clientId?: string; clientFullName?: string; deleted?: boolean; profileId?: string; id?: string; uid?: string; }; export { Transaction };