import { WaiterConfiguration, WaiterResult } from "@smithy/core/client";
import {
  DescribeNodegroupCommandInput,
  DescribeNodegroupCommandOutput,
} from "../commands/DescribeNodegroupCommand";
import { EKSClient } from "../EKSClient";
import { EKSServiceException } from "../models/EKSServiceException";
import { ResourceNotFoundException } from "../models/errors";
export declare const waitForNodegroupDeleted: (
  params: WaiterConfiguration<EKSClient>,
  input: DescribeNodegroupCommandInput
) => Promise<
  WaiterResult<DescribeNodegroupCommandOutput | EKSServiceException>
>;
export declare const waitUntilNodegroupDeleted: (
  params: WaiterConfiguration<EKSClient>,
  input: DescribeNodegroupCommandInput
) => Promise<WaiterResult<ResourceNotFoundException>>;
