import { FC, AnchorHTMLAttributes } from 'react';
export interface ForwardProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
    /** 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<ForwardProps>;
