import * as React from 'react'; interface IProps { type: string; color?: string; href: string; target?: string; } declare const Link: React.FC; export default Link;