import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetEnvironmentCommandInput, type GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand"; import type { ProtonServiceException } from "../models/ProtonServiceException"; import type { ProtonClient } from "../ProtonClient"; /** * Wait until an Environment is deployed. Use this after invoking CreateEnvironment or UpdateEnvironment * @deprecated Use waitUntilEnvironmentDeployed instead. waitForEnvironmentDeployed does not throw error in non-success cases. */ export declare const waitForEnvironmentDeployed: (params: WaiterConfiguration, input: GetEnvironmentCommandInput) => Promise>; /** * Wait until an Environment is deployed. Use this after invoking CreateEnvironment or UpdateEnvironment * @param params - Waiter configuration options. * @param input - The input to GetEnvironmentCommand for polling. */ export declare const waitUntilEnvironmentDeployed: (params: WaiterConfiguration, input: GetEnvironmentCommandInput) => Promise>;