import { type CreateIntlFn } from "@formatjs/intl";
import * as React from "react";
import type { IntlConfig, IntlShape } from "../types.js";
/**
* Create intl object
* @param config intl config
* @param cache cache for formatter instances to prevent memory leak
*/
export declare const createIntl: CreateIntlFn<React.ReactNode, IntlConfig, IntlShape>;
