import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import type { AmpClient } from "../AmpClient"; import { type DescribeAnomalyDetectorCommandInput, type DescribeAnomalyDetectorCommandOutput } from "../commands/DescribeAnomalyDetectorCommand"; import type { AmpServiceException } from "../models/AmpServiceException"; /** * Wait until the anomaly detector reaches ACTIVE status * @deprecated Use waitUntilAnomalyDetectorActive instead. waitForAnomalyDetectorActive does not throw error in non-success cases. */ export declare const waitForAnomalyDetectorActive: (params: WaiterConfiguration, input: DescribeAnomalyDetectorCommandInput) => Promise>; /** * Wait until the anomaly detector reaches ACTIVE status * @param params - Waiter configuration options. * @param input - The input to DescribeAnomalyDetectorCommand for polling. */ export declare const waitUntilAnomalyDetectorActive: (params: WaiterConfiguration, input: DescribeAnomalyDetectorCommandInput) => Promise>;