import { SetupContext } from 'vue'; import { SortInfo, TdPrimaryTableProps, PrimaryTableCol, TableRowData } from '../type'; export type SortMap = Record; export default function useSorter(props: TdPrimaryTableProps, { slots }: SetupContext): { renderSortIcon: ({ col }: { col: PrimaryTableCol; colIndex: number; }) => import("vue/jsx-runtime").JSX.Element; };