import { Predicate } from '@angular/core';
export declare class ByUtil {
    static and<T>(...predicates: Array<Predicate<T>>): Predicate<T>;
    static or<T>(...predicates: Array<Predicate<T>>): Predicate<T>;
    static not<T>(predicate: Predicate<T>): Predicate<T>;
}
