import { default as React } from 'react'; import { IBankAccount, ICategory } from '@abyss-project/banking'; export type PartialAccountTransaction = { id: string; amount: number; comment: string | null; currency: string; description: string; bankAccountId: string; date: Date; transactionCategory?: { id?: string; categoryId: string; }[]; }; type Props = { index: number; accountTransaction: PartialAccountTransaction; bankAccount: IBankAccount; handleChangeCategory?: (accountTransaction: PartialAccountTransaction, categoryIds: string[]) => Promise; isLoading: boolean; handleFetchAccountTransactions: () => Promise; displayCategoryList?: boolean; collapseChildren?: React.ReactNode; categories: ICategory[]; handleOpenCommentModal?: () => void; customActions?: React.ReactNode; }; declare const AccountTransactionsRow: React.FC; export default AccountTransactionsRow;