import { LinkProps } from "next/link"; import React from "react"; declare type Props = { outLink?: boolean; } & (LinkProps | React.DetailedHTMLProps, HTMLAnchorElement>); export declare const DynamicLink: React.FC; export {};