import React from 'react'; import { MinervaProps } from '../layout'; declare type BaseProps = MinervaProps & React.LinkHTMLAttributes; export interface LinkProps extends BaseProps { children?: React.ReactNode; href?: string; /** If `true`, the link will open in new tab */ isExternal?: boolean; } /** * Links are tags used for navigation. * * @see Docs @TODO */ export declare const Link: React.ForwardRefExoticComponent & React.RefAttributes>; export default Link;