import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetReplicationSetCommandInput, type GetReplicationSetCommandOutput } from "../commands/GetReplicationSetCommand"; import type { SSMIncidentsServiceException } from "../models/SSMIncidentsServiceException"; import type { SSMIncidentsClient } from "../SSMIncidentsClient"; /** * Wait for a replication set to become ACTIVE * @deprecated Use waitUntilWaitForReplicationSetActive instead. waitForWaitForReplicationSetActive does not throw error in non-success cases. */ export declare const waitForWaitForReplicationSetActive: (params: WaiterConfiguration, input: GetReplicationSetCommandInput) => Promise>; /** * Wait for a replication set to become ACTIVE * @param params - Waiter configuration options. * @param input - The input to GetReplicationSetCommand for polling. */ export declare const waitUntilWaitForReplicationSetActive: (params: WaiterConfiguration, input: GetReplicationSetCommandInput) => Promise>;