import Link from 'next/link'; import { FC, ComponentPropsWithoutRef } from 'react'; type NextLinkProps = ComponentPropsWithoutRef; type Props = Omit & { href?: NextLinkProps['href'] | undefined; }; declare const Anchor: FC; export { Anchor };