import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetServiceCommandInput, type GetServiceCommandOutput } from "../commands/GetServiceCommand"; import type { ResourceNotFoundException } from "../models/errors"; import type { ProtonServiceException } from "../models/ProtonServiceException"; import type { ProtonClient } from "../ProtonClient"; /** * Wait until a Service, its instances, and possibly pipeline have been deleted after DeleteService is invoked * @deprecated Use waitUntilServiceDeleted instead. waitForServiceDeleted does not throw error in non-success cases. */ export declare const waitForServiceDeleted: (params: WaiterConfiguration, input: GetServiceCommandInput) => Promise>; /** * Wait until a Service, its instances, and possibly pipeline have been deleted after DeleteService is invoked * @param params - Waiter configuration options. * @param input - The input to GetServiceCommand for polling. */ export declare const waitUntilServiceDeleted: (params: WaiterConfiguration, input: GetServiceCommandInput) => Promise>;