import React from 'react';
import { IType } from '../Type/Type';
import { IColor } from '../types';
export interface ILink extends Omit<IType, 'color'> {
color?: IColor;
underline?: true | 'hover';
}
declare const Link: React.FC<ILink>;
export default Link;