import * as React from 'react'; import { GridProps } from "../../../index.type"; import { GridRef } from "./Grid"; declare type ContextProps = GridProps & { ref: GridRef; isSortingListUpdated: boolean; updateIsSortingListUpdated: () => void; }; declare const context: React.Context; export declare const GridProvider: React.Provider; export default context;