import React from 'react'; import { PrimaryTableCol, SortInfo, TableRowData, TdPrimaryTableProps } from '../type'; export type SortMap = Record; export default function useSorter(props: TdPrimaryTableProps): { renderSortIcon: ({ col }: { col: PrimaryTableCol; colIndex: number; }) => React.JSX.Element; };