import { IntlCache, IntlShape, IntlConfig } from './types'; export interface CreateIntlFn = IntlConfig, S extends IntlShape = IntlShape> { (config: C, cache?: IntlCache): S; } /** * Create intl object * @param config intl config * @param cache cache for formatter instances to prevent memory leak */ export declare function createIntl(config: IntlConfig, cache?: IntlCache): IntlShape;