import { type LinkProps } from 'next/link.js'; import { type ComponentProps } from 'react'; type NextLinkProps = Omit, keyof LinkProps> & Omit; export type LocaleLinkProps = NextLinkProps & { locale: string; }; declare const LocaleLink: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default LocaleLink;