import { MessageAttachment } from './message-attachment'; import { Member, RawChatMessage } from './types'; import { HttpApi } from './http'; export declare class IncomingChatMessage { readonly text: string; readonly conversationId: string; readonly messageId: string; readonly memberId: string; readonly member: Member; readonly attachments: MessageAttachment[]; constructor(http: HttpApi, message: RawChatMessage); }