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"; import type { ResourceNotFoundException } from "../models/errors"; /** * Wait until a workspace reaches DELETED status * @deprecated Use waitUntilWorkspaceDeleted instead. waitForWorkspaceDeleted does not throw error in non-success cases. */ export declare const waitForWorkspaceDeleted: (params: WaiterConfiguration, input: DescribeWorkspaceCommandInput) => Promise>; /** * Wait until a workspace reaches DELETED status * @param params - Waiter configuration options. * @param input - The input to DescribeWorkspaceCommand for polling. */ export declare const waitUntilWorkspaceDeleted: (params: WaiterConfiguration, input: DescribeWorkspaceCommandInput) => Promise>;