export declare const NotificationChannelInsightSeverity: {
    readonly Low: "LOW";
    readonly Medium: "MEDIUM";
    readonly High: "HIGH";
};
/**
 * DevOps Guru Insight Severity Enum
 */
export type NotificationChannelInsightSeverity = (typeof NotificationChannelInsightSeverity)[keyof typeof NotificationChannelInsightSeverity];
export declare const NotificationChannelNotificationMessageType: {
    readonly NewInsight: "NEW_INSIGHT";
    readonly ClosedInsight: "CLOSED_INSIGHT";
    readonly NewAssociation: "NEW_ASSOCIATION";
    readonly SeverityUpgraded: "SEVERITY_UPGRADED";
    readonly NewRecommendation: "NEW_RECOMMENDATION";
};
/**
 * DevOps Guru NotificationMessageType Enum
 */
export type NotificationChannelNotificationMessageType = (typeof NotificationChannelNotificationMessageType)[keyof typeof NotificationChannelNotificationMessageType];
export declare const ResourceCollectionType: {
    readonly AwsCloudFormation: "AWS_CLOUD_FORMATION";
    readonly AwsTags: "AWS_TAGS";
};
/**
 * The type of ResourceCollection
 */
export type ResourceCollectionType = (typeof ResourceCollectionType)[keyof typeof ResourceCollectionType];
