/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type FC } from 'react';
import type { GridItemProps } from './types';
/**test
* __Grid item__
*
* A grid item is designed to be nested in a `Grid`. Grid items can span one or many columns.
*
* - [Code](https://atlassian.design/components/grid)
*
* @example
* ```jsx
* import Grid, { GridItem } from '@atlaskit/grid';
*
* const App = () => (
*
* half-width content
* half-width content
*
* );
* ```
*/
export declare const GridItem: FC;