import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetComponentCommandInput, type GetComponentCommandOutput } from "../commands/GetComponentCommand"; import type { ResourceNotFoundException } from "../models/errors"; import type { ProtonServiceException } from "../models/ProtonServiceException"; import type { ProtonClient } from "../ProtonClient"; /** * Wait until a Component is deleted. Use this after invoking DeleteComponent * @deprecated Use waitUntilComponentDeleted instead. waitForComponentDeleted does not throw error in non-success cases. */ export declare const waitForComponentDeleted: (params: WaiterConfiguration, input: GetComponentCommandInput) => Promise>; /** * Wait until a Component is deleted. Use this after invoking DeleteComponent * @param params - Waiter configuration options. * @param input - The input to GetComponentCommand for polling. */ export declare const waitUntilComponentDeleted: (params: WaiterConfiguration, input: GetComponentCommandInput) => Promise>;