import React, { FunctionComponent, MouseEvent } from 'react'; import SeverityType from '../../types/SeverityType'; type LinkSeverityType = SeverityType | 'default'; export interface PropsType { href?: string; className?: string; severity?: LinkSeverityType; title: string; target?: '_blank' | '_self'; 'data-testid'?: string; onClick?(event: MouseEvent): void; } declare const Link: FunctionComponent>; export default Link; export { LinkSeverityType };