export declare const AlarmMuteRuleStatus: {
    readonly Scheduled: "SCHEDULED";
    readonly Active: "ACTIVE";
    readonly Expired: "EXPIRED";
};
/**
 * The current status of the AlarmMuteRule
 */
export type AlarmMuteRuleStatus = (typeof AlarmMuteRuleStatus)[keyof typeof AlarmMuteRuleStatus];
export declare const OTelEnrichmentStatus: {
    readonly Running: "RUNNING";
    readonly Stopped: "STOPPED";
};
/**
 * Current status of OTel enrichment (RUNNING or STOPPED).
 */
export type OTelEnrichmentStatus = (typeof OTelEnrichmentStatus)[keyof typeof OTelEnrichmentStatus];
