export declare enum ERROR_TYPES { GENERATION = "GENERATION", SUBMISSION = "SUBMISSION" } export declare const GENERATION_ERROR_TITLE = "Notes could not be fully auto-generated"; export declare const GENERATION_ERROR_DESCRIPTION = "Request to auto-generate wrap up notes failed"; export declare const GENERATION_ERROR_DESCRIPTION_PARTIAL = "No match found for one or more wrap up notes fields"; export declare const GENERATION_ERROR_CONTEXT = "AgentCopilot.AutoGenerateWrapUpNotes"; export declare const SUBMISSION_ERROR_TITLE = "Notes could not be submitted"; export declare const SUBMISSION_ERROR_DESCRIPTION = "Request to submit wrap up notes failed"; export declare const SUBMISSION_ERROR_CONTEXT = "AgentCopilot.SubmitWrapUpNotes"; export declare const logToFlexStatusPanel: (errorType: ERROR_TYPES, taskSid?: string, interactionSid?: string, channelSid?: string, instanceSid?: string) => void;