import { type GridSpacing } from './constants';
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 {};
