import * as react_jsx_runtime from 'react/jsx-runtime'; import { Table } from '@tanstack/react-table'; interface Props { table: Table; sort: Partial>; handleSort: (field: TSortField) => void; } declare function DataTableSort({ table, sort, handleSort, }: Props): react_jsx_runtime.JSX.Element; export { DataTableSort };