import type { TableColumn, TableDataSource } from '@mezzanine-ui/core/table'; import type { TableSortingState } from '../TableContext'; export interface UseTableSortingOptions { columns: TableColumn[]; } export declare function useTableSorting({ columns, }: UseTableSortingOptions): TableSortingState;