import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetServiceInstanceCommandInput, type GetServiceInstanceCommandOutput } from "../commands/GetServiceInstanceCommand"; import type { ProtonServiceException } from "../models/ProtonServiceException"; import type { ProtonClient } from "../ProtonClient"; /** * Wait until a ServiceInstance is deployed. Use this after invoking CreateService or UpdateServiceInstance * @deprecated Use waitUntilServiceInstanceDeployed instead. waitForServiceInstanceDeployed does not throw error in non-success cases. */ export declare const waitForServiceInstanceDeployed: (params: WaiterConfiguration, input: GetServiceInstanceCommandInput) => Promise>; /** * Wait until a ServiceInstance is deployed. Use this after invoking CreateService or UpdateServiceInstance * @param params - Waiter configuration options. * @param input - The input to GetServiceInstanceCommand for polling. */ export declare const waitUntilServiceInstanceDeployed: (params: WaiterConfiguration, input: GetServiceInstanceCommandInput) => Promise>;