export default i18nStub;
declare namespace i18nStub {
    function initialize(): Promise<void>;
    /**
     * Overridable string wrapper method which can be used to provide i18n
     * support.
     *
     * The default implementation in @converse/headless simply calls sprintf
     * with the passed in arguments.
     *
     * If you install the full version of Converse, then this method gets
     * overwritten in src/i18n/index.js to return a translated string.
     * @method __
     * @private
     * @memberOf i18n
     */
    function __(...args: any[]): any;
}
//# sourceMappingURL=i18n.d.ts.map