import * as React from 'react';
import { IntlConfig as CoreIntlConfig, IntlFormatters, Formatters } from '@formatjs/intl';
export interface IntlConfig extends CoreIntlConfig<React.ReactNode> {
    textComponent?: React.ComponentType | keyof React.ReactHTML;
    wrapRichTextChunksInFragment?: boolean;
}
export interface IntlShape extends IntlConfig, IntlFormatters<React.ReactNode> {
    formatters: Formatters;
}
//# sourceMappingURL=types.d.ts.map