import { Paginator } from "@smithy/types";
import {
  ListBranchesCommandInput,
  ListBranchesCommandOutput,
} from "../commands/ListBranchesCommand";
import { CodeCommitPaginationConfiguration } from "./Interfaces";
export declare const paginateListBranches: (
  config: CodeCommitPaginationConfiguration,
  input: ListBranchesCommandInput,
  ...rest: any[]
) => Paginator<ListBranchesCommandOutput>;
