import { ChatInformationType } from '../Enum'; /** * 消息基类 */ export declare abstract class ChatMessageBase { InfoType: ChatInformationType; constructor(infoType: ChatInformationType); } export default ChatMessageBase;