import { default as React } from 'react'; import { PolymorphicProps } from '../../style-engine'; import { Responsive } from './Grid'; export type GridColSpan = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'full'; export type GridItemProps = PolymorphicProps; }>; export declare function GridItem({ as, colSpan, className, children, ...props }: GridItemProps): React.JSX.Element;