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