1 | import { type ConditionalValue, type SystemStyleObject } from "../../styled-system";
|
2 | import type { BoxProps } from "../box/box";
|
3 | export interface GridItemProps extends BoxProps {
|
4 | area?: SystemStyleObject["gridArea"];
|
5 | colSpan?: ConditionalValue<number | "auto">;
|
6 | colStart?: ConditionalValue<number | "auto">;
|
7 | colEnd?: ConditionalValue<number | "auto">;
|
8 | rowStart?: ConditionalValue<number | "auto">;
|
9 | rowEnd?: ConditionalValue<number | "auto">;
|
10 | rowSpan?: ConditionalValue<number | "auto">;
|
11 | }
|
12 | export declare const GridItem: import("react").ForwardRefExoticComponent<GridItemProps & import("react").RefAttributes<HTMLDivElement>>;
|