import { ComponentPropsWithoutRef } from 'react'; import { LayoutUtilProps } from '../../../types'; /** * Props for the GridItem component * @extends ComponentPropsWithoutRef<"div"> * @extends LayoutUtilProps */ export type GridItemProps = ComponentPropsWithoutRef<"div"> & LayoutUtilProps; /** * GridItem component for individual items within a CSS Grid layout. * * Features: * - Individual grid item with full layout utility support * - Automatic grid item styling and class management * - Comprehensive layout utilities for positioning and sizing * - Support for all standard div element props * - Flexible grid positioning and sizing controls * - Automatic style generation and class management * - Works seamlessly with Grid component * * @example * * Grid Item 1 * Grid Item 2 * */ export declare const GridItem: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & LayoutUtilProps & import('react').RefAttributes>;