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