declare namespace _default { namespace methods { /** * This is a wrapper for the normal vue-i18n $t function that allows our components to support i18n * without requiring it (without it they should fallback to English) * @param {String} str the key to translate * @returns {String} */ function t(str: string): string; } } export default _default;