import { Message } from "./message"; import { Annotation } from "./annotation"; export declare class MessageResponse extends Message { /** * Output only. Annotations associated with the text in this message. */ private readonly annotations?; /** * Output only. The time at which the message was created in Hangouts Chat * server. */ private readonly createTime?; /** * Resource name, in the form "spaces/x/messages/*". Example: * spaces/AAAAMpdlehY/messages/UMxbHmzDlr4.UMxbHmzDlr4 */ private name?; getAnnotations(): Annotation[]; getCreateTime(): string; getName(): string; }