import { Predicate } from './predicate'; import { BasePredicate, testSymbol } from './base-predicate'; import { Ow } from '../..'; /** * @hidden */ export declare class AnyPredicate implements BasePredicate { private readonly predicates; constructor(predicates: Predicate[]); [testSymbol](value: T, main: Ow): void; }