/// import type { IAmazonServerGroup, IScalingPolicyAlarm, IStepAdjustment } from '../../../../../domain'; import './AlarmConfigurer.less'; export interface IAlarmConfigurerProps { alarm: IScalingPolicyAlarm; multipleAlarms: boolean; serverGroup: IAmazonServerGroup; stepAdjustments: IStepAdjustment[]; stepsChanged: (steps: IStepAdjustment[]) => void; updateAlarm: (alarm: IScalingPolicyAlarm) => void; } export declare const COMPARATORS: { label: string; value: string; }[]; export declare const AlarmConfigurer: ({ alarm, multipleAlarms, serverGroup, stepAdjustments, stepsChanged, updateAlarm, }: IAlarmConfigurerProps) => JSX.Element;