export function Translate(): void;
export class Translate {
    /**
     * 转繁体中文
     * @param {any} text 原文本
     * @param {any} type 0、繁体中文，1、港澳繁体，2、台湾正体
     */
    ToTraditionalChinese: (text: any, type: any) => any;
    /**
     * 转简体中文
     * @param {any} text 原文本
     * @param {any} srcType 0、繁体中文，1、港澳繁体，2、台湾正体
     */
    ToSimplifiedChinese: (text: any, srcType: any) => any;
}
