import { ConversationEvent } from "./ConversationEvent"; export declare class ConversationStartedEvent extends ConversationEvent { static eventName: string; static eventVersion: number; readonly platform: string; readonly channelId: string; readonly channelUserId: string; readonly contactId: string; readonly status: "NEW" | "WAITING" | "ACTIVE" | "ENDED"; constructor({ tenantId, conversationId, platform, channelId, channelUserId, contactId, status, }: { tenantId: string; conversationId: string; platform: string; channelId: string; channelUserId: string; contactId: string; status: "NEW" | "WAITING" | "ACTIVE" | "ENDED"; }); }