import React from 'react';
import { IType } from '../Type/Type';
export declare type ILink = IType & {
    underline?: true | 'hover';
    href?: string;
    target?: string;
};
declare const Link: React.FC<ILink>;
export default Link;
