import { type I18n } from "vue-i18n"; import type { App } from "vue"; export declare const localesConfigs: { zh: any; en: any; }; /** * 国际化转换工具函数(自动读取根目录locales文件夹下文件进行国际化匹配) * @param message message * @returns 转化后的message */ export declare function transformI18n(message?: any): any; /** 此函数只是配合i18n Ally插件来进行国际化智能提示,并无实际意义(只对提示起作用),如果不需要国际化可删除 */ export declare const $t: (key: string) => string; export declare const i18n: I18n; export declare function useI18n(app: App, locale: LocaleJson): void;