import { type LinkProps } from 'next/link.js'; import { type ComponentProps } from 'react'; import { type Locale } from 'use-intl'; import type { InitializedLocaleCookieConfig } from '../../routing/config.js'; type NextLinkProps = Omit, keyof LinkProps> & Omit; type Props = NextLinkProps & { locale?: Locale; localeCookie: InitializedLocaleCookieConfig; }; declare const _default: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default _default;