import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import type { CloudWatchClient } from "../CloudWatchClient"; import { type GetAlarmMuteRuleCommandInput, type GetAlarmMuteRuleCommandOutput } from "../commands/GetAlarmMuteRuleCommand"; import type { CloudWatchServiceException } from "../models/CloudWatchServiceException"; /** * * @deprecated Use waitUntilAlarmMuteRuleExists instead. waitForAlarmMuteRuleExists does not throw error in non-success cases. */ export declare const waitForAlarmMuteRuleExists: (params: WaiterConfiguration, input: GetAlarmMuteRuleCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to GetAlarmMuteRuleCommand for polling. */ export declare const waitUntilAlarmMuteRuleExists: (params: WaiterConfiguration, input: GetAlarmMuteRuleCommandInput) => Promise>;