/// import { useRender } from '@base-ui/react'; import { AlignType } from './types'; type GridItemProps = useRender.ComponentProps<'div'> & { area?: string; colStart?: number | string; colEnd?: number | string; rowStart?: number | string; rowEnd?: number | string; colSpan?: number | string; rowSpan?: number | string; justifySelf?: AlignType; alignSelf?: AlignType; }; export declare function GridItem({ area, colStart, colEnd, rowStart, rowEnd, colSpan, rowSpan, justifySelf, alignSelf, style, render, ref, ...props }: GridItemProps): import("react").ReactElement>; export declare namespace GridItem { var displayName: string; } export {}; //# sourceMappingURL=grid-item.d.ts.map