import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type GetHarvestJobCommandInput, type GetHarvestJobCommandOutput } from "../commands/GetHarvestJobCommand"; import type { MediaPackageV2Client } from "../MediaPackageV2Client"; import type { MediaPackageV2ServiceException } from "../models/MediaPackageV2ServiceException"; /** * * @deprecated Use waitUntilHarvestJobFinished instead. waitForHarvestJobFinished does not throw error in non-success cases. */ export declare const waitForHarvestJobFinished: (params: WaiterConfiguration, input: GetHarvestJobCommandInput) => Promise>; /** * * @param params - Waiter configuration options. * @param input - The input to GetHarvestJobCommand for polling. */ export declare const waitUntilHarvestJobFinished: (params: WaiterConfiguration, input: GetHarvestJobCommandInput) => Promise>;