import * as React from "react"; import type { Locale } from "date-fns"; import type { IntlRaw } from "../../records/Intl"; import type { Context } from "../../services/intl/context"; declare type Props = { raw: IntlRaw; children: (arg: Context) => React.ReactNode; getLocale: Promise; }; declare type State = { debug: boolean; }; /** * @deprecated * use 'IntlProvider' from 'services/intl/context' */ export default class InitIntl extends React.PureComponent { static defaultProps: { getLocale: Promise; }; state: { debug: boolean; }; handleDebug: () => void; render(): React.ReactNode; } export {};