import React, { ReactNode } from "react"; /** * Loads translations asynchronously using dynamic import abd react-i18next will have translations eventually and update * When language changes in context, the i18n instance will be updated and child components will update */ export declare const Translator: React.FunctionComponent<{ children: ReactNode; }>; export default Translator;