import Predicate from "./Predicate"; /** * Predicate implementation that returns the opposite of the decorated predicate. */ export default class NotPredicate extends Predicate { predicate: Predicate; constructor(predicate: Predicate); evaluate(input: T): boolean; } //# sourceMappingURL=NotPredicate.d.ts.map