type DynamicLinkProps = {
    href: string;
    children: any;
};
/**
 * @deprecated This component should no longer be used.
 * It will be removed in a future version of this package.
 * Please use the NextJS Link component instead.
 *
 * Former workaround for https://github.com/vercel/next.js/issues/42991#issuecomment-1592921378
 */
export declare function DynamicLink({ href, children }: DynamicLinkProps): import("react/jsx-runtime").JSX.Element;
export {};
