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