import React, { type PropsWithChildren } from 'react'; import { type IntlShape } from 'react-intl-next'; export type MessagesIntlProviderProps = PropsWithChildren<{ intl: IntlShape; }>; declare const _default: React.FC> & { WrappedComponent: React.ComponentType; }; export default _default;