import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter"; import { type DescribeNodegroupCommandInput } from "../commands/DescribeNodegroupCommand"; import type { EKSClient } from "../EKSClient"; /** * * @deprecated Use waitUntilNodegroupActive instead. waitForNodegroupActive does not throw error in non-success cases. */ export declare const waitForNodegroupActive: (params: WaiterConfiguration, input: DescribeNodegroupCommandInput) => Promise; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeNodegroupCommand for polling. */ export declare const waitUntilNodegroupActive: (params: WaiterConfiguration, input: DescribeNodegroupCommandInput) => Promise;