import * as z from "zod/v4"; import { OpenEnum } from "../../types/enums.js"; export declare const ObservabilityErrorCode: { readonly UnknownError: "UNKNOWN_ERROR"; readonly ValidationError: "VALIDATION_ERROR"; readonly AuthForbidden: "AUTH_FORBIDDEN"; readonly AuthForbiddenNotWorkspaceAdmin: "AUTH_FORBIDDEN_NOT_WORKSPACE_ADMIN"; readonly AuthForbiddenWorkspaceNotFound: "AUTH_FORBIDDEN_WORKSPACE_NOT_FOUND"; readonly AuthForbiddenRoleNotFound: "AUTH_FORBIDDEN_ROLE_NOT_FOUND"; readonly AuthUnauthorized: "AUTH_UNAUTHORIZED"; readonly FeatureNotSupported: "FEATURE_NOT_SUPPORTED"; readonly FieldsBadRequest: "FIELDS_BAD_REQUEST"; readonly SearchBadRequest: "SEARCH_BAD_REQUEST"; readonly DatabaseError: "DATABASE_ERROR"; readonly DatabaseTimeout: "DATABASE_TIMEOUT"; readonly DatabaseUnavailable: "DATABASE_UNAVAILABLE"; readonly DatabaseQueryError: "DATABASE_QUERY_ERROR"; readonly SearchFilterToSqlConversionError: "SEARCH_FILTER_TO_SQL_CONVERSION_ERROR"; readonly JudgeConversationFormatError: "JUDGE_CONVERSATION_FORMAT_ERROR"; readonly JudgeMistralApiError: "JUDGE_MISTRAL_API_ERROR"; readonly JudgeMistralApiTimeout: "JUDGE_MISTRAL_API_TIMEOUT"; readonly JudgeNameAlreadyExists: "JUDGE_NAME_ALREADY_EXISTS"; readonly JudgeNotFound: "JUDGE_NOT_FOUND"; readonly JudgeDidNotChange: "JUDGE_DID_NOT_CHANGE"; readonly DatasetNotFound: "DATASET_NOT_FOUND"; readonly DatasetTaskNotFound: "DATASET_TASK_NOT_FOUND"; readonly DatasetRecordNotFound: "DATASET_RECORD_NOT_FOUND"; readonly DatasetRecordFormatError: "DATASET_RECORD_FORMAT_ERROR"; readonly AgentNotFound: "AGENT_NOT_FOUND"; readonly AgentMistralApiError: "AGENT_MISTRAL_API_ERROR"; readonly EvaluationNotFound: "EVALUATION_NOT_FOUND"; readonly EvaluationCurrentlyRunning: "EVALUATION_CURRENTLY_RUNNING"; readonly EvaluationRecordNotFound: "EVALUATION_RECORD_NOT_FOUND"; readonly EvaluationRunNotFound: "EVALUATION_RUN_NOT_FOUND"; readonly EvaluationRunTransitionIsInvalid: "EVALUATION_RUN_TRANSITION_IS_INVALID"; readonly EvaluationRunTransitionIsRunningAlready: "EVALUATION_RUN_TRANSITION_IS_RUNNING_ALREADY"; readonly EvaluationRunTransitionError: "EVALUATION_RUN_TRANSITION_ERROR"; readonly TemplateError: "TEMPLATE_ERROR"; readonly TemplateSyntaxError: "TEMPLATE_SYNTAX_ERROR"; readonly ProjectNameAlreadyExists: "PROJECT_NAME_ALREADY_EXISTS"; readonly PipelineConfigNotFound: "PIPELINE_CONFIG_NOT_FOUND"; readonly PipelineConfigAlreadyExists: "PIPELINE_CONFIG_ALREADY_EXISTS"; readonly ScorerNotFound: "SCORER_NOT_FOUND"; readonly ScorerAlreadyExists: "SCORER_ALREADY_EXISTS"; readonly ScorerConfigKindMismatch: "SCORER_CONFIG_KIND_MISMATCH"; readonly EvaluationNameAlreadyExists: "EVALUATION_NAME_ALREADY_EXISTS"; readonly OptimizationTrialKeyAlreadyExists: "OPTIMIZATION_TRIAL_KEY_ALREADY_EXISTS"; readonly TracesFilterQueryParseError: "TRACES_FILTER_QUERY_PARSE_ERROR"; readonly TraceNotFound: "TRACE_NOT_FOUND"; readonly SpanNotFound: "SPAN_NOT_FOUND"; }; export type ObservabilityErrorCode = OpenEnum; /** @internal */ export declare const ObservabilityErrorCode$inboundSchema: z.ZodType; //# sourceMappingURL=observabilityerrorcode.d.ts.map