import { Predicate } from './types'; export declare const not: (predicate: Predicate) => (value: T) => boolean; export declare const or: (...predicates: Predicate[]) => (value: T) => boolean; export declare const and: (...predicates: Predicate[]) => (value: T) => boolean;