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