import React from 'react'; import { BaseEntity, CatalogColumn } from '../../../components/Catalog/CatalogTableView/CatalogTableView'; export type CatalogTableHeaderCellProps = { column: CatalogColumn; currentSortOption?: string | null; handleSortClick: (sortKey: string, direction: 'asc' | 'desc') => void; isColumnSorted: (sortKey: string, direction: 'asc' | 'desc') => boolean; }; export declare const CatalogTableHeaderCell: ({ column, currentSortOption, handleSortClick, isColumnSorted, }: CatalogTableHeaderCellProps) => React.JSX.Element;