import { AuthParams, ID, SupportedTransaction, TransactionType } from '@zeniai/client-epic-state'; interface CompletedTabListRowProps { authParams: AuthParams; isAccountingClassesEnabled: boolean; transaction: SupportedTransaction; transactionAttachmentsEndpoint: string; /** When true, the row is the last in the list and omits a bottom border. */ isLastRow?: boolean; onMissingReceiptsRowClick: (transactionId: ID, transactionType: TransactionType) => void; } export declare const CompletedTabListRow: ({ transaction, authParams, isAccountingClassesEnabled, transactionAttachmentsEndpoint, isLastRow, onMissingReceiptsRowClick, }: CompletedTabListRowProps) => import("react/jsx-runtime").JSX.Element; export declare const CompletedTabListEmptyRow: ({ isAccountingClassesEnabled, isLastRow, }?: { isAccountingClassesEnabled?: boolean; isLastRow?: boolean; }) => import("react/jsx-runtime").JSX.Element; export {};