import { SortOrder } from '@zeniai/client-epic-state'; import { DisableMode } from '../../../../formElements/common/common'; import { TransactionLineRowSortConfig, TransactionLineSortKey } from './transactionLineHeaderConfig'; export interface TransactionLineTableHeaderProps { isAccountingClassesEnabled: boolean; showProjectField: boolean; sortConfig: TransactionLineRowSortConfig; isCompressed?: boolean; isDisabled?: DisableMode; isQuickViewMode?: boolean; onColumnSortConfigChanged?: (sortKey: TransactionLineSortKey, sortOrder: SortOrder) => void; } export declare const TransactionLineTableHeader: ({ sortConfig, isAccountingClassesEnabled, showProjectField, isCompressed, isQuickViewMode, isDisabled, onColumnSortConfigChanged, }: TransactionLineTableHeaderProps) => import("react/jsx-runtime").JSX.Element;