import { Paginator } from "@smithy/types";
import {
  ListNodegroupsCommandInput,
  ListNodegroupsCommandOutput,
} from "../commands/ListNodegroupsCommand";
import { EKSPaginationConfiguration } from "./Interfaces";
export declare const paginateListNodegroups: (
  config: EKSPaginationConfiguration,
  input: ListNodegroupsCommandInput,
  ...rest: any[]
) => Paginator<ListNodegroupsCommandOutput>;
