import type { NextRequest } from "next/server"; import type { UiLocalization } from "./locales/ui-shared"; export declare function getUiLocaleDict(locale: string): UiLocalization; export declare function createUiLocaleHandler({ cacheMaxAge }: { cacheMaxAge: number; }): (req: NextRequest) => Promise;