declare enum BotEvent { FETCH = "FETCH" } declare enum AnalyzerEvent { RUN = "RUN", RUN_ONCE = "RUN_ONCE", SAVE = "SAVE" } export declare const Event: { readonly SERVER_API: { UPDATE_GUILD: string; ANNOUNCEMENT_SAFETY_MESSAGE: string; OCI_USER_PROFILES_GET_RESPONSE: string; EngagementTokenIssued: string; }; readonly DISCORD_BOT: { SEND_MESSAGE: string; SEND_MESSAGE_TO_CHANNEL: string; FETCH_MEMBERS: string; INTERACTION_RESPONSE: { CREATE: string; EDIT: string; DELETE: string; }; FOLLOWUP_MESSAGE: { CREATE: string; }; FETCH: BotEvent.FETCH; }; readonly DISCORD_ANALYZER: { RUN: AnalyzerEvent.RUN; RUN_ONCE: AnalyzerEvent.RUN_ONCE; SAVE: AnalyzerEvent.SAVE; }; readonly DISCORD_HIVEMIND_ADAPTER: { QUESTION_COMMAND_RECEIVED: string; QUESTION_RESPONSE_RECEIVED: string; }; readonly TWITTER_BOT: { EXTRACT: { TWEETS: string; LIKES: string; PROFILES: string; }; SEND_MESSAGE: string; }; readonly HIVEMIND: { QUESTION_RECEIVED: string; }; readonly OCI_BACKEND: { OCI_USER_PROFILES_GET_REQUEST: string; }; readonly TELEGRAM: { SEND_MESSAGE: string; }; }; export {};