export declare enum ERROR_TYPES { SEND_MESSAGE = "SEND_MESSAGE", LIST_MESSAGES = "LIST_MESSAGES", LIST_SUGGESTIONS = "LIST_SUGGESTIONS", SUBSCRIBE_SUGGESTIONS = "SUBSCRIBE_SUGGESTIONS" } export declare const SEND_MESSAGE_ERROR_TITLE = "Answer could not be generated"; export declare const SEND_MESSAGE_ERROR_DESCRIPTION = "Request to generate answer failed"; export declare const SEND_MESSAGE_ERROR_CONTEXT = "AgentCopilot.SendMessage"; export declare const LIST_MESSAGES_ERROR_TITLE = "Failed to fetch message list"; export declare const LIST_MESSAGES_ERROR_DESCRIPTION = "Request to list messages failed"; export declare const LIST_MESSAGES_ERROR_CONTEXT = "AgentCopilot.ListMessages"; export declare const LIST_SUGGESTIONS_ERROR_TITLE = "Failed to fetch suggestion list"; export declare const LIST_SUGGESTIONS_ERROR_DESCRIPTION = "Request to list suggestions failed"; export declare const LIST_SUGGESTIONS_ERROR_CONTEXT = "AgentCopilot.ListSuggestions"; export declare const SUBSCRIBE_SUGGESTIONS_ERROR_TITLE = "Failed to fetch suggestion from subscription"; export declare const SUBSCRIBE_SUGGESTIONS_ERROR_DESCRIPTION = "Request to fetch suggestion from subscription failed"; export declare const SUBSCRIBE_SUGGESTIONS_ERROR_CONTEXT = "AgentCopilot.SubscribeSuggestions"; export declare const logToFlexStatusPanel: (errorType: ERROR_TYPES, taskSid?: string, interactionSid?: string, instanceSid?: string) => void;