import { BaseEntity, CatalogColumn } from '../../../components/Catalog/CatalogTableView/CatalogTableView'; type CatalogTableHeaderCellActionsProps = { column: CatalogColumn; currentSortOption?: string | null; handleSortClick: (sortKey: string, direction: 'asc' | 'desc') => void; isColumnSorted: (sortKey: string, direction: 'asc' | 'desc') => boolean; }; export declare function useCatalogTableHeaderCellActions({ column, currentSortOption, handleSortClick, isColumnSorted }: CatalogTableHeaderCellActionsProps): { handleCellClick: () => void; sortKey: string | undefined; isUpActive: boolean; isDownActive: boolean; }; export {};