import React from 'react'; import { DOMProps, QAProps } from '../types'; import './Link.css'; export declare type LinkView = 'normal' | 'primary' | 'secondary' | 'normal-visitable'; export interface LinkProps extends DOMProps, QAProps { view?: LinkView; title?: string; href?: string; target?: string; rel?: string; id?: string; children?: React.ReactNode; onClick?: React.MouseEventHandler; onFocus?: React.FocusEventHandler; onBlur?: React.FocusEventHandler; extraProps?: React.AnchorHTMLAttributes | React.HTMLAttributes; } export declare const Link: React.ForwardRefExoticComponent, "key" | keyof LinkProps> & React.RefAttributes>;