import type { Grid } from "./+types.js"; import type { InternalAtoms } from "./state/+types.js"; import type { Provider } from "react"; export interface GridRootContext { readonly ref: (el: HTMLElement | null) => void; readonly grid: Grid & { internal: InternalAtoms; }; } export declare const RootProvider: Provider; export declare const useGridRoot: () => GridRootContext;