import { Paginator } from "@smithy/types";
import {
  ListInsightsCommandInput,
  ListInsightsCommandOutput,
} from "../commands/ListInsightsCommand";
import { EKSPaginationConfiguration } from "./Interfaces";
export declare const paginateListInsights: (
  config: EKSPaginationConfiguration,
  input: ListInsightsCommandInput,
  ...rest: any[]
) => Paginator<ListInsightsCommandOutput>;
