import { DetailedCategoryWithTransactions } from '../../core'; interface CategoriesListItemProps extends DetailedCategoryWithTransactions { onClick?: () => void; isLastItem?: boolean; showDivider?: boolean; } declare const CategoriesListItem: (({ totalAmount, guid, name, transactions, onClick, isLastItem, showDivider, }: CategoriesListItemProps) => import("react/jsx-runtime").JSX.Element) & { displayName: string; }; export default CategoriesListItem;