import type { IntlConfig } from 'use-intl/core'; type RequestConfig = Omit; export type GetRequestConfigParams = { locale: string; }; /** * Should be called in `i18n.ts` to create the configuration for the current request. */ export default function getRequestConfig(createRequestConfig: (params: GetRequestConfigParams) => RequestConfig | Promise): (params: GetRequestConfigParams) => RequestConfig | Promise; export {};