/// import type { DecoratedGrid } from '../interfaces'; import type { LayoutController } from '../controllers'; export declare type GridContextValue = { grid: DecoratedGrid; layoutController: LayoutController; }; export declare const GridContext: import("react").Context>; export declare const GridProvider: import("react").Provider>; export declare const useGridContext: () => Partial;