export interface DataTableTHeadCellContextValue { /** * Lets a descendant (e.g. DataTable.Sort) report whether it is currently sorted, * so the owning can reflect it with a sorted class. */ setSorted: (sorted: boolean) => void; } export declare const DataTableTHeadCellProvider: ({ value, children }: { value: DataTableTHeadCellContextValue; children: React.ReactNode; }) => import("react").JSX.Element, useDataTableTHeadCellContext: () => DataTableTHeadCellContextValue | undefined;