import React, { FC } from "react"; import { TableCellProps } from "@material-ui/core/TableCell"; declare const sortState: { field: string; order: number; }; declare const sortActions: (field: string, order: number) => void; declare type ISortContext = [typeof sortState, typeof sortActions | undefined]; export declare const SortContext: React.Context; export declare const SortProvider: FC; export declare const useSort: () => ISortContext; export declare const HeadSortCell: FC; export {};