import { FC, HTMLAttributes } from 'react'; export interface GridListProps extends HTMLAttributes { /** Classi aggiuntive da usare per il componente LinkListItem */ className?: string; testId?: string; } export declare const GridList: FC;