export declare const PayloadType: { readonly JSON: "JSON"; readonly STRING: "STRING"; }; export type PayloadType = (typeof PayloadType)[keyof typeof PayloadType]; export declare const AlarmModelVersionStatus: { readonly ACTIVATING: "ACTIVATING"; readonly ACTIVE: "ACTIVE"; readonly FAILED: "FAILED"; readonly INACTIVE: "INACTIVE"; }; export type AlarmModelVersionStatus = (typeof AlarmModelVersionStatus)[keyof typeof AlarmModelVersionStatus]; export declare const ComparisonOperator: { readonly EQUAL: "EQUAL"; readonly GREATER: "GREATER"; readonly GREATER_OR_EQUAL: "GREATER_OR_EQUAL"; readonly LESS: "LESS"; readonly LESS_OR_EQUAL: "LESS_OR_EQUAL"; readonly NOT_EQUAL: "NOT_EQUAL"; }; export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator]; export declare const AnalysisResultLevel: { readonly ERROR: "ERROR"; readonly INFO: "INFO"; readonly WARNING: "WARNING"; }; export type AnalysisResultLevel = (typeof AnalysisResultLevel)[keyof typeof AnalysisResultLevel]; export declare const AnalysisStatus: { readonly COMPLETE: "COMPLETE"; readonly FAILED: "FAILED"; readonly RUNNING: "RUNNING"; }; export type AnalysisStatus = (typeof AnalysisStatus)[keyof typeof AnalysisStatus]; export declare const EvaluationMethod: { readonly BATCH: "BATCH"; readonly SERIAL: "SERIAL"; }; export type EvaluationMethod = (typeof EvaluationMethod)[keyof typeof EvaluationMethod]; export declare const DetectorModelVersionStatus: { readonly ACTIVATING: "ACTIVATING"; readonly ACTIVE: "ACTIVE"; readonly DEPRECATED: "DEPRECATED"; readonly DRAFT: "DRAFT"; readonly FAILED: "FAILED"; readonly INACTIVE: "INACTIVE"; readonly PAUSED: "PAUSED"; }; export type DetectorModelVersionStatus = (typeof DetectorModelVersionStatus)[keyof typeof DetectorModelVersionStatus]; export declare const InputStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly DELETING: "DELETING"; readonly UPDATING: "UPDATING"; }; export type InputStatus = (typeof InputStatus)[keyof typeof InputStatus]; export declare const LoggingLevel: { readonly DEBUG: "DEBUG"; readonly ERROR: "ERROR"; readonly INFO: "INFO"; }; export type LoggingLevel = (typeof LoggingLevel)[keyof typeof LoggingLevel];