import { type IntlConfig, type Locale, _createIntlFormatters } from 'use-intl/core'; declare function getConfigImpl(localeOverride?: Locale): Promise<{ locale: IntlConfig['locale']; formats?: NonNullable; timeZone: NonNullable; onError: NonNullable; getMessageFallback: NonNullable; messages?: NonNullable; now?: NonNullable; _formatters: ReturnType; }>; declare const getConfig: typeof getConfigImpl; export default getConfig;