import type { DropEventParams } from "../+types.js";
interface GridBoxContextValue {
    readonly accepted: string[];
    readonly orientation: "horizontal" | "vertical";
    readonly onRootDrop: (p: DropEventParams) => void;
}
export declare const GridBoxContext: import("react").Context<GridBoxContextValue>;
export declare const useGridBoxContext: () => GridBoxContextValue;
export {};
