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 a Service, its instances, and possibly pipeline have been deployed after UpdateService is invoked * @deprecated Use waitUntilServiceUpdated instead. waitForServiceUpdated does not throw error in non-success cases. */ export declare const waitForServiceUpdated: (params: WaiterConfiguration, input: GetServiceCommandInput) => Promise>; /** * Wait until a Service, its instances, and possibly pipeline have been deployed after UpdateService is invoked * @param params - Waiter configuration options. * @param input - The input to GetServiceCommand for polling. */ export declare const waitUntilServiceUpdated: (params: WaiterConfiguration, input: GetServiceCommandInput) => Promise>;