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"; import type { ResourceNotFoundException } from "../models/errors"; /** * Wait until the anomaly detector reaches DELETED status * @deprecated Use waitUntilAnomalyDetectorDeleted instead. waitForAnomalyDetectorDeleted does not throw error in non-success cases. */ export declare const waitForAnomalyDetectorDeleted: (params: WaiterConfiguration, input: DescribeAnomalyDetectorCommandInput) => Promise>; /** * Wait until the anomaly detector reaches DELETED status * @param params - Waiter configuration options. * @param input - The input to DescribeAnomalyDetectorCommand for polling. */ export declare const waitUntilAnomalyDetectorDeleted: (params: WaiterConfiguration, input: DescribeAnomalyDetectorCommandInput) => Promise>;