/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type FC } from 'react';
import type { BaseGridProps } from './types';
export type GridProps = BaseGridProps;
/**
* __Grid__
*
* A grid is a responsive layout component designed to manage the content of a page.
*
* - [Code](https://atlassian.design/components/grid)
*
* @example
* ```jsx
* import Grid, { GridItem } from '@atlaskit/grid';
*
* const App = () => (
*
*
*
* );
* ```
*/
export declare const Grid: FC;