import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetEnvironmentTemplateVersionCommandInput, type GetEnvironmentTemplateVersionCommandOutput } from "../commands/GetEnvironmentTemplateVersionCommand"; import type { ProtonServiceException } from "../models/ProtonServiceException"; import type { ProtonClient } from "../ProtonClient"; /** * Wait until an EnvironmentTemplateVersion is registered. Use this after invoking CreateEnvironmentTemplateVersion * @deprecated Use waitUntilEnvironmentTemplateVersionRegistered instead. waitForEnvironmentTemplateVersionRegistered does not throw error in non-success cases. */ export declare const waitForEnvironmentTemplateVersionRegistered: (params: WaiterConfiguration, input: GetEnvironmentTemplateVersionCommandInput) => Promise>; /** * Wait until an EnvironmentTemplateVersion is registered. Use this after invoking CreateEnvironmentTemplateVersion * @param params - Waiter configuration options. * @param input - The input to GetEnvironmentTemplateVersionCommand for polling. */ export declare const waitUntilEnvironmentTemplateVersionRegistered: (params: WaiterConfiguration, input: GetEnvironmentTemplateVersionCommandInput) => Promise>;