import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetServiceCommandInput, type GetServiceCommandOutput } from "../commands/GetServiceCommand"; import type { ProtonServiceException } from "../models/ProtonServiceException"; import type { ProtonClient } from "../ProtonClient"; /** * Wait until an ServicePipeline is deployed. Use this after invoking CreateService or UpdateServicePipeline * @deprecated Use waitUntilServicePipelineDeployed instead. waitForServicePipelineDeployed does not throw error in non-success cases. */ export declare const waitForServicePipelineDeployed: (params: WaiterConfiguration, input: GetServiceCommandInput) => Promise>; /** * Wait until an ServicePipeline is deployed. Use this after invoking CreateService or UpdateServicePipeline * @param params - Waiter configuration options. * @param input - The input to GetServiceCommand for polling. */ export declare const waitUntilServicePipelineDeployed: (params: WaiterConfiguration, input: GetServiceCommandInput) => Promise>;