import { Context } from "../imports/Context.js"; import { Function } from "../imports/Function.js"; import { User } from "./User.js"; export declare class Conversation { constructor(cx?: Context, args?: any[], ctorObj?: Function, inNewExpr?: boolean); addSubscriber(userSysID?: string, silent?: boolean): void; static create(options?: Record): Conversation; static get(documentSysID?: string, documentTable?: any): Conversation; static getAgentName(agentSysUserID?: string): string; getDeviceType(): string; static getLiveGroupProfileIdByInteractionMetadata(table?: string, id?: string): string; getName(): string; getRecordTableName(): string; getSubscribers(): User[]; getSysID(): string; static getVersion(conversationSysId?: string): string; removeSubscriber(userSysID?: string, silent?: boolean): void; sendMessage(options?: any): void; updateInteractionInternalTranscript(interactionId?: string): boolean; } //# sourceMappingURL=Conversation.d.ts.map