import { IWindIntlPublic, IWindIntlExtended } from './types'; /** @public */ declare const IntlProvider: IWindIntlExtended['IntlProvider']; /** @public */ declare const withProvider: IWindIntlExtended['withProvider']; /** @public */ declare const Consumer: IWindIntlExtended['Consumer']; /** * @public * This instance is created in top level code. And shared by * `import intl from '@alicloud/console-components-intl'`. * You can create your own instance with `reactIntlFactory`. */ declare const intlPublicTyped: IWindIntlPublic; export default intlPublicTyped; export { intlPublicTyped as intl, IntlProvider, withProvider, Consumer }; export { default as ReactIntl } from './ReactIntl'; export { createReactIntlFromCfg, createReactIntlFromInstance } from './factory'; export { default as IntlBase } from './IntlBase'; export { default as VanillaIntl } from './VanillaIntl'; export * from './types'; export { default as presets } from './presets/date'; export * from './presets/date'; export { default as withRcIntl } from './utils/useIntlContext/withRcIntl'; export { default as useScopedIntl } from './utils/useIntlContext/useScopedIntl';