import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetSensitiveDataOccurrencesCommandInput, type GetSensitiveDataOccurrencesCommandOutput } from "../commands/GetSensitiveDataOccurrencesCommand"; import type { Macie2Client } from "../Macie2Client"; import type { Macie2ServiceException } from "../models/Macie2ServiceException"; /** * Wait until the sensitive data occurrences are ready. * @deprecated Use waitUntilFindingRevealed instead. waitForFindingRevealed does not throw error in non-success cases. */ export declare const waitForFindingRevealed: (params: WaiterConfiguration, input: GetSensitiveDataOccurrencesCommandInput) => Promise>; /** * Wait until the sensitive data occurrences are ready. * @param params - Waiter configuration options. * @param input - The input to GetSensitiveDataOccurrencesCommand for polling. */ export declare const waitUntilFindingRevealed: (params: WaiterConfiguration, input: GetSensitiveDataOccurrencesCommandInput) => Promise>;