import { Predicate, Context } from './predicate'; export declare class BooleanPredicate extends Predicate { /** * @hidden */ constructor(context?: Context); /** * Test a boolean to be true. */ readonly true: this; /** * Test a boolean to be false. */ readonly false: this; }