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"; /** * Wait until a scraper reaches ACTIVE status * @deprecated Use waitUntilScraperActive instead. waitForScraperActive does not throw error in non-success cases. */ export declare const waitForScraperActive: (params: WaiterConfiguration, input: DescribeScraperCommandInput) => Promise>; /** * Wait until a scraper reaches ACTIVE status * @param params - Waiter configuration options. * @param input - The input to DescribeScraperCommand for polling. */ export declare const waitUntilScraperActive: (params: WaiterConfiguration, input: DescribeScraperCommandInput) => Promise>;