import { IntlCache, IntlConfig, IntlShape } from './types.js'; 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;