import { Paginator } from "@smithy/types";
import {
  ListRootsCommandInput,
  ListRootsCommandOutput,
} from "../commands/ListRootsCommand";
import { OrganizationsPaginationConfiguration } from "./Interfaces";
export declare const paginateListRoots: (
  config: OrganizationsPaginationConfiguration,
  input: ListRootsCommandInput,
  ...rest: any[]
) => Paginator<ListRootsCommandOutput>;
