///
import type { Buffer } from 'node:buffer';
import type { TypedArray } from './typed-array.js';
import { StringPredicate } from './predicates/string.js';
import { NumberPredicate } from './predicates/number.js';
import { BigIntPredicate } from './predicates/bigint.js';
import { BooleanPredicate } from './predicates/boolean.js';
import { Predicate, type PredicateOptions } from './predicates/predicate.js';
import { ArrayPredicate } from './predicates/array.js';
import { ObjectPredicate } from './predicates/object.js';
import { DatePredicate } from './predicates/date.js';
import { ErrorPredicate } from './predicates/error.js';
import { MapPredicate } from './predicates/map.js';
import { WeakMapPredicate } from './predicates/weak-map.js';
import { SetPredicate } from './predicates/set.js';
import { WeakSetPredicate } from './predicates/weak-set.js';
import { TypedArrayPredicate } from './predicates/typed-array.js';
import { ArrayBufferPredicate } from './predicates/array-buffer.js';
import { DataViewPredicate } from './predicates/data-view.js';
import type { BasePredicate } from './predicates/base-predicate.js';
import { AnyPredicate } from './predicates/any.js';
export type Predicates = {
/**
Test the value to be a string.
*/
readonly string: StringPredicate;
/**
Test the value to be a number.
*/
readonly number: NumberPredicate;
/**
Test the value to be an bigint.
*/
readonly bigint: BigIntPredicate;
/**
Test the value to be a boolean.
*/
readonly boolean: BooleanPredicate;
/**
Test the value to be undefined.
*/
readonly undefined: Predicate;
/**
Test the value to be null.
*/
readonly null: Predicate;
/**
Test the value to be null or undefined.
*/
readonly nullOrUndefined: Predicate;
/**
Test the value to be not a number.
*/
readonly nan: Predicate;
/**
Test the value to be a Symbol.
*/
readonly symbol: Predicate;
/**
Test the value to be an array.
*/
readonly array: ArrayPredicate;
/**
Test the value to be an object.
*/
readonly object: ObjectPredicate;
/**
Test the value to be a Date.
*/
readonly date: DatePredicate;
/**
Test the value to be an Error.
*/
readonly error: ErrorPredicate;
/**
Test the value to be a Map.
*/
readonly map: MapPredicate;
/**
Test the value to be a WeakMap.
*/
readonly weakMap: WeakMapPredicate;
/**
Test the value to be a Set.
*/
readonly set: SetPredicate;
/**
Test the value to be a WeakSet.
*/
readonly weakSet: WeakSetPredicate;
/**
Test the value to be a Function.
*/
readonly function: Predicate;
/**
Test the value to be a Buffer.
*/
readonly buffer: Predicate;
/**
Test the value to be a RegExp.
*/
readonly regExp: Predicate;
/**
Test the value to be a Promise.
*/
readonly promise: Predicate>;
/**
Test the value to be a typed array.
*/
readonly typedArray: TypedArrayPredicate;
/**
Test the value to be a Int8Array.
*/
readonly int8Array: TypedArrayPredicate;
/**
Test the value to be a Uint8Array.
*/
readonly uint8Array: TypedArrayPredicate;
/**
Test the value to be a Uint8ClampedArray.
*/
readonly uint8ClampedArray: TypedArrayPredicate;
/**
Test the value to be a Int16Array.
*/
readonly int16Array: TypedArrayPredicate;
/**
Test the value to be a Uint16Array.
*/
readonly uint16Array: TypedArrayPredicate;
/**
Test the value to be a Int32Array.
*/
readonly int32Array: TypedArrayPredicate;
/**
Test the value to be a Uint32Array.
*/
readonly uint32Array: TypedArrayPredicate;
/**
Test the value to be a Float32Array.
*/
readonly float32Array: TypedArrayPredicate;
/**
Test the value to be a Float64Array.
*/
readonly float64Array: TypedArrayPredicate;
/**
Test the value to be a ArrayBuffer.
*/
readonly arrayBuffer: ArrayBufferPredicate;
/**
Test the value to be a SharedArrayBuffer.
*/
readonly sharedArrayBuffer: ArrayBufferPredicate;
/**
Test the value to be a DataView.
*/
readonly dataView: DataViewPredicate;
/**
Test the value to be Iterable.
*/
readonly iterable: Predicate>;
/**
Test that the value matches at least one of the given predicates.
*/
any: ((p1: BasePredicate) => AnyPredicate) & ((p1: BasePredicate, p2: BasePredicate) => AnyPredicate) & ((p1: BasePredicate, p2: BasePredicate, p3: BasePredicate) => AnyPredicate) & ((p1: BasePredicate, p2: BasePredicate, p3: BasePredicate, p4: BasePredicate) => AnyPredicate) & ((p1: BasePredicate, p2: BasePredicate, p3: BasePredicate, p4: BasePredicate, p5: BasePredicate) => AnyPredicate) & ((p1: BasePredicate, p2: BasePredicate, p3: BasePredicate, p4: BasePredicate, p5: BasePredicate, p6: BasePredicate) => AnyPredicate) & ((p1: BasePredicate, p2: BasePredicate, p3: BasePredicate, p4: BasePredicate, p5: BasePredicate, p6: BasePredicate, p7: BasePredicate) => AnyPredicate) & ((p1: BasePredicate, p2: BasePredicate, p3: BasePredicate, p4: BasePredicate, p5: BasePredicate, p6: BasePredicate, p7: BasePredicate, p8: BasePredicate) => AnyPredicate) & ((p1: BasePredicate, p2: BasePredicate, p3: BasePredicate, p4: BasePredicate, p5: BasePredicate, p6: BasePredicate, p7: BasePredicate, p8: BasePredicate, p9: BasePredicate) => AnyPredicate) & ((p1: BasePredicate, p2: BasePredicate, p3: BasePredicate, p4: BasePredicate, p5: BasePredicate, p6: BasePredicate, p7: BasePredicate, p8: BasePredicate, p9: BasePredicate, p10: BasePredicate) => AnyPredicate) & ((...predicate: BasePredicate[]) => AnyPredicate);
};
declare const predicates: (object: T, options?: PredicateOptions) => T & Predicates;
export default predicates;
export { ObjectPredicate } from './predicates/object.js';
export type { Shape } from './predicates/object.js';
export { StringPredicate } from './predicates/string.js';
export { NumberPredicate } from './predicates/number.js';
export { BigIntPredicate } from './predicates/bigint.js';
export { BooleanPredicate } from './predicates/boolean.js';
export { ArrayPredicate } from './predicates/array.js';
export { DatePredicate } from './predicates/date.js';
export { ErrorPredicate } from './predicates/error.js';
export { MapPredicate } from './predicates/map.js';
export { WeakMapPredicate } from './predicates/weak-map.js';
export { SetPredicate } from './predicates/set.js';
export { WeakSetPredicate } from './predicates/weak-set.js';
export { TypedArrayPredicate } from './predicates/typed-array.js';
export { ArrayBufferPredicate } from './predicates/array-buffer.js';
export { DataViewPredicate } from './predicates/data-view.js';
export { AnyPredicate } from './predicates/any.js';