export declare enum ScenarioType { UserSendMessageStrategy = "UserSendMessageStrategy", SystemMessageStrategy = "SystemMessageStrategy", ReceivedMessageStrategy = "ReceivedMessageStrategy" } export type MessagePayload = { text: string; type: string; timestamp?: string | undefined; userId: string; tags: string[]; messageType: string; Id: string | undefined; role: string | undefined; channelData?: any; chatId?: string; conversationId?: string; isChatComplete: boolean; attachment?: any[]; }; export type TrackingMessage = { Id: string | undefined; role: string | undefined; timestamp: string | undefined; tags: string[]; messageType: string; text: string; checkTime?: number; type: string; };