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