import React from 'react'; interface IIntlProps { locale: 'zh-CN' | 'en-US' | string; children: React.ReactNode; } declare const IntlProvider: (props: IIntlProps) => JSX.Element; export default IntlProvider;