import { type FC, type PropsWithChildren } from 'react'; import { type Locale } from './localeMap'; declare const allLocaleKeys: Locale[]; type Props = PropsWithChildren<{ locale: string; availableLocales?: string[]; _not_used_locale?: AvailableLocales[number]; _not_used_availableLocales?: AvailableLocales; }>; export declare const useAvailableLocales: () => ("pt" | "ja" | "en-us" | "id-id" | "vi" | "ko" | "zh-cn" | "zh-tw" | "ja-easy")[]; export declare const IntlProvider: ({ availableLocales, locale, children, }: Props) => ReturnType; export {};