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