import { NextRequest } from 'next/server'; import { AllLocales, Pathnames } from '../shared/types'; import { MiddlewareConfigWithDefaults } from './NextIntlMiddlewareConfig'; /** * See https://developers.google.com/search/docs/specialty/international/localized-versions */ export default function getAlternateLinksHeaderValue({ config, localizedPathnames, request, resolvedLocale }: { config: MiddlewareConfigWithDefaults; request: NextRequest; resolvedLocale: Locales[number]; localizedPathnames?: Pathnames[string]; }): string;