import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type DescribeTransformJobCommandInput, type DescribeTransformJobCommandOutput } from "../commands/DescribeTransformJobCommand"; import type { SageMakerServiceException } from "../models/SageMakerServiceException"; import type { SageMakerClient } from "../SageMakerClient"; /** * * @deprecated Use waitUntilTransformJobCompletedOrStopped instead. waitForTransformJobCompletedOrStopped does not throw error in non-success cases. */ export declare const waitForTransformJobCompletedOrStopped: (params: WaiterConfiguration, input: DescribeTransformJobCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeTransformJobCommand for polling. */ export declare const waitUntilTransformJobCompletedOrStopped: (params: WaiterConfiguration, input: DescribeTransformJobCommandInput) => Promise>;