/** * 表情模型 */ declare class Emoticon { code: string; text: string; tip: string; constructor(code: string, text: string, tip: string); getText(): string; } export default Emoticon;