/// import { BaseLocaleDriver, BrowserPreferenceDriver, SessionCookieDriver, type LocaleCookieWriteOptions } from '@18ways/core/locale-drivers'; import { PathLocaleDriver, type PathLocaleDriverContext, type PathLocaleResolution } from '@18ways/core/path-locale-driver'; export type NextLocaleCookieWriteOptions = LocaleCookieWriteOptions; export type NextLocaleDriverContext = PathLocaleDriverContext; export { BaseLocaleDriver, BrowserPreferenceDriver, PathLocaleDriver, SessionCookieDriver, type PathLocaleResolution, }; export declare const createNextLocaleDrivers: () => import("@18ways/core/locale-engine").LocaleDriver[]; export declare const createNextLocaleEngine: (options: { baseLocale: string; acceptedLocales?: string[]; }) => import("@18ways/core/locale-engine").LocaleEngine;