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