import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter"; import { type GetIdentityVerificationAttributesCommandInput } from "../commands/GetIdentityVerificationAttributesCommand"; import type { SESClient } from "../SESClient"; /** * * @deprecated Use waitUntilIdentityExists instead. waitForIdentityExists does not throw error in non-success cases. */ export declare const waitForIdentityExists: (params: WaiterConfiguration, input: GetIdentityVerificationAttributesCommandInput) => Promise; /** * * @param params - Waiter configuration options. * @param input - The input to GetIdentityVerificationAttributesCommand for polling. */ export declare const waitUntilIdentityExists: (params: WaiterConfiguration, input: GetIdentityVerificationAttributesCommandInput) => Promise;