import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import type { AmpClient } from "../AmpClient"; import { type DescribeScraperCommandInput, type DescribeScraperCommandOutput } from "../commands/DescribeScraperCommand"; import type { AmpServiceException } from "../models/AmpServiceException"; import type { ResourceNotFoundException } from "../models/errors"; /** * Wait until a scraper reaches DELETED status * @deprecated Use waitUntilScraperDeleted instead. waitForScraperDeleted does not throw error in non-success cases. */ export declare const waitForScraperDeleted: (params: WaiterConfiguration, input: DescribeScraperCommandInput) => Promise>; /** * Wait until a scraper reaches DELETED status * @param params - Waiter configuration options. * @param input - The input to DescribeScraperCommand for polling. */ export declare const waitUntilScraperDeleted: (params: WaiterConfiguration, input: DescribeScraperCommandInput) => Promise>;