import { Conversation } from "./Conversation"; import { User } from "./User"; export declare class Message { getBody(): string; getConversation(): Conversation; getField(): string; getSender(): User; getSysID(): string; getType(): string; constructor(); }