import { ReactNode } from 'react'; import type { IntlConfig } from 'react-intl'; type Props = { locale?: string; messages?: IntlConfig['messages']; children: ReactNode; }; declare const ConfigureIntlProvider: { (props: Props): import("@emotion/react/jsx-runtime").JSX.Element | null; displayName: string; }; export default ConfigureIntlProvider;