import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
import { DescribeNodegroupCommandInput } from "../commands/DescribeNodegroupCommand";
import { EKSClient } from "../EKSClient";
export declare const waitForNodegroupActive: (
  params: WaiterConfiguration<EKSClient>,
  input: DescribeNodegroupCommandInput
) => Promise<WaiterResult>;
export declare const waitUntilNodegroupActive: (
  params: WaiterConfiguration<EKSClient>,
  input: DescribeNodegroupCommandInput
) => Promise<WaiterResult>;
