export declare const DetailType: { readonly BASIC: "BASIC"; readonly FULL: "FULL"; }; export type DetailType = (typeof DetailType)[keyof typeof DetailType]; export declare const NotificationRuleStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; export type NotificationRuleStatus = (typeof NotificationRuleStatus)[keyof typeof NotificationRuleStatus]; export declare const TargetStatus: { readonly ACTIVE: "ACTIVE"; readonly DEACTIVATED: "DEACTIVATED"; readonly INACTIVE: "INACTIVE"; readonly PENDING: "PENDING"; readonly UNREACHABLE: "UNREACHABLE"; }; export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus]; export declare const ListEventTypesFilterName: { readonly RESOURCE_TYPE: "RESOURCE_TYPE"; readonly SERVICE_NAME: "SERVICE_NAME"; }; export type ListEventTypesFilterName = (typeof ListEventTypesFilterName)[keyof typeof ListEventTypesFilterName]; export declare const ListNotificationRulesFilterName: { readonly CREATED_BY: "CREATED_BY"; readonly EVENT_TYPE_ID: "EVENT_TYPE_ID"; readonly RESOURCE: "RESOURCE"; readonly TARGET_ADDRESS: "TARGET_ADDRESS"; }; export type ListNotificationRulesFilterName = (typeof ListNotificationRulesFilterName)[keyof typeof ListNotificationRulesFilterName]; export declare const ListTargetsFilterName: { readonly TARGET_ADDRESS: "TARGET_ADDRESS"; readonly TARGET_STATUS: "TARGET_STATUS"; readonly TARGET_TYPE: "TARGET_TYPE"; }; export type ListTargetsFilterName = (typeof ListTargetsFilterName)[keyof typeof ListTargetsFilterName];