UNPKG

@atlaskit/page

Version:

A page layout organizes sections on a page using a grid and grid columns.

19 lines (18 loc) 433 B
/// <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 {};