export declare enum LIVE_AGENT_STATUS { REQUEST = 1, JOINED = 2, LEAVED = 3 } export declare enum CONVERSATION_STATUS { SUBSCRIBED = 1, UNSUBSCRIBED = 2 } export declare const LIVE_AGENT_REQUEST_MESSAGE = "LIVE_AGENT_REQUEST"; export declare enum RepresentativeType { BOT = "BOT", HUMAN = "HUMAN" } export interface Representative { avatar?: string; name: string; type: RepresentativeType; } export interface Conversation { id?: number; partnerId?: string | null; status?: LIVE_AGENT_STATUS; representative?: Representative; } export declare enum CONVERSATION_BILLING_EVENT { START = 0, EXTEND = 1, START_WITH_BROADCAST = 2 }