/** * Localize a string including variable formatting for input arguments. Provide a string ID which defines the localized * template. Variables can be included in the template enclosed in braces and will be substituted using those named * keys. * * @param {string} stringId - The string ID to translate. * * @param {object} [data] - Provided input data. * * @returns {string} The translated and formatted string */ declare function localize(stringId: string, data?: object): string; export { localize };