import { FC, ReactNode, RefObject } from 'react'; export interface LinkProps { to?: string; tabIndex?: number; className?: string; variant?: 'normal' | 'primary' | 'secondary' | 'tertiary' | 'navigation' | 'navigationBlue'; target?: '_blank' | '_self' | '_parent' | '_top'; ref?: RefObject; onClick?: (e: any) => void; ariaLabel?: string; isExternal?: boolean; onKeyDown?: (e: any) => void; children?: ReactNode; title?: string; icon?: 'email' | 'linkedin'; rel?: string; } declare const Link: FC; export default Link;