/// <reference types="react" />
import { type GridSpacing } from './types';
type GridContextProps = {
    isRoot: boolean;
    isNested: boolean;
    spacing: GridSpacing;
    columns: number;
};
/**
 * __Grid context__
 *
 * Provides contextual information which is used by both
 * the `Grid` and its `GridColumn` children.
 *
 * @internal
 */
export declare const GridContext: import("react").Context<GridContextProps>;
export {};
