import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter"; import { type DescribeImageScanFindingsCommandInput, type DescribeImageScanFindingsCommandOutput } from "../commands/DescribeImageScanFindingsCommand"; import type { ECRClient } from "../ECRClient"; import type { ECRServiceException } from "../models/ECRServiceException"; /** * Wait until an image scan is complete and findings can be accessed * @deprecated Use waitUntilImageScanComplete instead. waitForImageScanComplete does not throw error in non-success cases. */ export declare const waitForImageScanComplete: (params: WaiterConfiguration, input: DescribeImageScanFindingsCommandInput) => Promise>; /** * Wait until an image scan is complete and findings can be accessed * @param params - Waiter configuration options. * @param input - The input to DescribeImageScanFindingsCommand for polling. */ export declare const waitUntilImageScanComplete: (params: WaiterConfiguration, input: DescribeImageScanFindingsCommandInput) => Promise>;