/**
* The Link wraps around React Router's Link component, to automatically replace
* it by the regular element when:
* - The target reference points to another domain;
* - User opts to open the reference in a new tab;
* - User explicitely opts to use .
*/
import { type LinkProps } from 'react-router';
import { type PropsT as GenericLinkPropsT } from './GenericLink';
type PropsT = LinkProps & Omit;
declare const Link: React.FunctionComponent;
export default Link;