import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import type { AmpClient } from "../AmpClient"; import { type DescribeWorkspaceCommandInput, type DescribeWorkspaceCommandOutput } from "../commands/DescribeWorkspaceCommand"; import type { AmpServiceException } from "../models/AmpServiceException"; /** * Wait until a workspace reaches ACTIVE status * @deprecated Use waitUntilWorkspaceActive instead. waitForWorkspaceActive does not throw error in non-success cases. */ export declare const waitForWorkspaceActive: (params: WaiterConfiguration, input: DescribeWorkspaceCommandInput) => Promise>; /** * Wait until a workspace reaches ACTIVE status * @param params - Waiter configuration options. * @param input - The input to DescribeWorkspaceCommand for polling. */ export declare const waitUntilWorkspaceActive: (params: WaiterConfiguration, input: DescribeWorkspaceCommandInput) => Promise>;