import { ComponentProps } from 'react'; import BaseLinkWithLocale from '../../shared/BaseLinkWithLocale'; import { AllLocales } from '../../shared/types'; type Props = Omit, 'locale'> & { locale?: Locales[number]; }; export default function BaseLink({ locale, ...rest }: Props): JSX.Element; export {};