import { Polymorphic } from '@hitagi/utils/types'; import React from 'react'; type LinkProps = { children: React.ReactNode; isExternal?: boolean; } & React.HTMLAttributes; declare const Link: Polymorphic.ForwardRefComponent<'a', LinkProps>; export default Link;