1 | import type { Main } from '../index.js';
|
2 | import { testSymbol, type BasePredicate } from './base-predicate.js';
|
3 | import type { PredicateOptions } from './predicate.js';
|
4 | /**
|
5 | @hidden
|
6 | */
|
7 | export declare class AnyPredicate<T = unknown> implements BasePredicate<T> {
|
8 | private readonly predicates;
|
9 | private readonly options;
|
10 | constructor(predicates: BasePredicate[], options?: PredicateOptions);
|
11 | [testSymbol](value: T, main: Main, label: string | Function, idLabel: boolean): asserts value;
|
12 | }
|