import { Analyzed } from "../aspect/AspectRegistry";
export interface Term {
    name: string;
    predicate: (pas: Analyzed) => boolean;
}
export interface Terms {
    terms: Term[];
}
export interface Partition {
    term: Term;
    matching: number;
    total: number;
}
export declare function suggestPartitions(repos: Analyzed[], terms: Terms): Partition[];
//# sourceMappingURL=partitioner.d.ts.map