import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter"; import type { AppStreamClient } from "../AppStreamClient"; import { type DescribeFleetsCommandInput, type DescribeFleetsCommandOutput } from "../commands/DescribeFleetsCommand"; import type { AppStreamServiceException } from "../models/AppStreamServiceException"; /** * * @deprecated Use waitUntilFleetStarted instead. waitForFleetStarted does not throw error in non-success cases. */ export declare const waitForFleetStarted: (params: WaiterConfiguration, input: DescribeFleetsCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeFleetsCommand for polling. */ export declare const waitUntilFleetStarted: (params: WaiterConfiguration, input: DescribeFleetsCommandInput) => Promise>;