import { MathExpression, Metric } from "aws-cdk-lib/aws-cloudwatch";
/**
 * Any metric we can create an alarm on.
 *
 * (Cannot be IMetric, as it does not have any alarm support in general.)
 */
export declare type MetricWithAlarmSupport = Metric | MathExpression;
