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 Service has deployed its instances and possibly pipeline. Use this after invoking CreateService * @deprecated Use waitUntilServiceCreated instead. waitForServiceCreated does not throw error in non-success cases. */ export declare const waitForServiceCreated: (params: WaiterConfiguration, input: GetServiceCommandInput) => Promise>; /** * Wait until an Service has deployed its instances and possibly pipeline. Use this after invoking CreateService * @param params - Waiter configuration options. * @param input - The input to GetServiceCommand for polling. */ export declare const waitUntilServiceCreated: (params: WaiterConfiguration, input: GetServiceCommandInput) => Promise>;