import { ElementType, FC, HTMLAttributes } from 'react';
export interface GridItemProps extends HTMLAttributes<HTMLSpanElement> {
    /** Classi aggiuntive da usare per il componente LinkListItem */
    className?: string;
    /** Indica il tag da utilizzare per il titolo */
    tag?: ElementType;
    testId?: string;
}
export declare const GridItem: FC<GridItemProps>;
