import { RepoId } from "../common/RepoId"; /** * Determine whether the given repo is eligible */ export declare type RepoFilter = (r: RepoId) => boolean | Promise; export declare const AllRepos: RepoFilter; export declare function andFilter(af: RepoFilter, bf?: RepoFilter): RepoFilter;