/** * @jsxRuntime classic * @jsx jsx */ import { type FC } from 'react'; import type { BaseGridProps } from './types'; /** * __GridContainer__ * * A grid container is a grid with one column whith the purpose of stacking grids on top of each other * while maintaining the responsive gaps between grids * - [Code](https://atlassian.design/components/grid-container) * * @example * ```jsx * import Grid, { GridItem, GridContainer } from '@atlaskit/grid'; * * const App = () => ( * * * * * * * * * ); * ``` */ export declare const GridContainer: FC; export { GridContainerContext } from './grid-container-context';