import * as _chakra_ui_system from '@chakra-ui/system'; import { SystemProps, ResponsiveValue } from '@chakra-ui/system'; import { BoxProps } from './box.js'; interface GridItemProps extends BoxProps { /** * Shorthand prop for `gridArea` * @type SystemProps["gridArea"] */ area?: SystemProps["gridArea"]; /** * The number of columns the grid item should `span`. * @type ResponsiveValue */ colSpan?: ResponsiveValue; /** * The column number the grid item should start. * @type ResponsiveValue */ colStart?: ResponsiveValue; /** * @type ResponsiveValue */ colEnd?: ResponsiveValue; /** * @type ResponsiveValue */ rowStart?: ResponsiveValue; /** * @type ResponsiveValue */ rowEnd?: ResponsiveValue; /** * @type ResponsiveValue */ rowSpan?: ResponsiveValue; } declare const GridItem: _chakra_ui_system.ComponentWithAs<"div", GridItemProps>; export { GridItem, GridItemProps };