import { ResponsiveValue, SystemProps } from "@chakra-v2/styled-system"; import { BoxProps } from "../box/box"; export 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; } export declare const GridItem: import("../system").ComponentWithAs<"div", GridItemProps>;