export declare const CustomerActionName: { readonly ACKNOWLEDGE: "ACKNOWLEDGE"; readonly DISABLE: "DISABLE"; readonly ENABLE: "ENABLE"; readonly RESET: "RESET"; readonly SNOOZE: "SNOOZE"; }; export type CustomerActionName = (typeof CustomerActionName)[keyof typeof CustomerActionName]; 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 AlarmStateName: { readonly ACKNOWLEDGED: "ACKNOWLEDGED"; readonly ACTIVE: "ACTIVE"; readonly DISABLED: "DISABLED"; readonly LATCHED: "LATCHED"; readonly NORMAL: "NORMAL"; readonly SNOOZE_DISABLED: "SNOOZE_DISABLED"; }; export type AlarmStateName = (typeof AlarmStateName)[keyof typeof AlarmStateName]; export declare const EventType: { readonly STATE_CHANGE: "STATE_CHANGE"; }; export type EventType = (typeof EventType)[keyof typeof EventType]; export declare const TriggerType: { readonly SNOOZE_TIMEOUT: "SNOOZE_TIMEOUT"; }; export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType]; export declare const ErrorCode: { readonly InternalFailureException: "InternalFailureException"; readonly InvalidRequestException: "InvalidRequestException"; readonly ResourceNotFoundException: "ResourceNotFoundException"; readonly ServiceUnavailableException: "ServiceUnavailableException"; readonly ThrottlingException: "ThrottlingException"; }; export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];