export interface DataTableSortContextValue {
    field: string;
    isSorted: boolean;
    sortOrder: number;
    sortIndex: number;
}
export declare const DataTableSortProvider: ({ value, children }: {
    value: DataTableSortContextValue;
    children: React.ReactNode;
}) => import("react").JSX.Element, useDataTableSortContext: () => DataTableSortContextValue | undefined;
