import { type LinkProps } from 'next/link.js'; import { type ComponentProps } from 'react'; export declare const PENDING_NAVIGATION_EVENT = "cloudflare-next-intl:pending-navigation"; export type PrefetchType = 'custom' | 'eager' | 'default'; type NextLinkProps = Omit, keyof LinkProps> & Omit & { prefetchType?: PrefetchType; hoverPrefetchDelayMs?: number; }; declare const Link: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default Link;