import { FC, AnchorHTMLAttributes } from 'react'; export interface ForwardProps extends AnchorHTMLAttributes { /** Classi aggiuntive da usare per il componente Forward */ className?: string; /** Riferimento al nodo a cui scorrere quando premuto */ testId?: string; } export declare const Forward: FC;