import { Status } from "../../../../DataFrame"; import { ResponseResult } from "../../../FieldChangeResult"; import { ChatServiceErrorCode } from "../../ChatService"; import { IMessage, MessageHandler } from "../../IChatService"; import { IControllerChat, IControllerChatMessage } from "./IControllerChat"; export declare class ControllerChat implements IControllerChat { private _connection; private _chatSubscriptions; constructor(); GetCachedMessagesAsync(): Promise>; SendMessageAsync(message: string): Promise; SubscribeToMessages(messageHandler: MessageHandler): void; UnsubscribeFromMessages(messageHandler: MessageHandler): void; }