import { type TableCellSortIconProps } from '../TableCellSortIcon'; export type UseSortableCellProps = { sortBy: T; sortDirection: TableCellSortIconProps['direction']; onChange: (key: T) => void; }; export declare const useSortableCell: ({ sortBy, sortDirection, onChange, }: UseSortableCellProps) => (key: T) => { readonly onClick: () => void; readonly color: 'fgMuted' | 'fgPrimary'; readonly end: import('react/jsx-runtime').JSX.Element; readonly 'aria-sort': 'none' | 'ascending' | 'descending' | 'other' | undefined; }; //# sourceMappingURL=useSortableCell.d.ts.map