import { Paginator } from "@smithy/types";
import {
  ListParentsCommandInput,
  ListParentsCommandOutput,
} from "../commands/ListParentsCommand";
import { OrganizationsPaginationConfiguration } from "./Interfaces";
export declare const paginateListParents: (
  config: OrganizationsPaginationConfiguration,
  input: ListParentsCommandInput,
  ...rest: any[]
) => Paginator<ListParentsCommandOutput>;
