import { CSSProperties, HTMLAttributes } from 'react';
export interface GridItemLayoutProps {
gridArea?: string;
width?: CSSProperties["width"];
visible?: boolean;
UNSAFE_className?: string;
justifySelf?: CSSProperties["justifySelf"];
padding?: CSSProperties["padding"];
}
export type GridItemProps = GridItemLayoutProps & HTMLAttributes;
export declare const GridItem: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;