import * as react from "react"; import { AnchorHTMLAttributes } from "react"; //#region src/link.d.ts interface LinkProps extends AnchorHTMLAttributes { /** * If the href is an external URL * * automatically determined by default */ external?: boolean; /** * Prefetch links, supported on Next.js */ prefetch?: boolean; } declare const Link: react.ForwardRefExoticComponent>; //#endregion export { LinkProps, Link as default };