/// export type GridItemProps = { children?: React.ReactNode; gridArea?: string; gridColumn?: string; gridColumnStart?: string; gridColumnEnd?: string; gridRow?: string; gridRowStart?: string; gridRowEnd?: string; justifySelf?: 'start' | 'end' | 'center' | 'stretch'; alignSelf?: 'start' | 'end' | 'center' | 'stretch'; placeSelf?: 'start' | 'end' | 'center' | 'stretch'; index?: number; styles?: { root: {}; }; }; declare const GridItem: import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme | undefined; as?: import("react").ElementType | undefined; } & GridItemProps, import("react").DetailedHTMLProps, HTMLDivElement>, {}>; export default GridItem;