/// interface LinkProps { title?: string; href?: string; target?: string; } declare const Link: (props: LinkProps) => JSX.Element; export default Link;