import { MatchResult } from './MatchResult'; import { Matcher } from './Matcher'; export declare class BooleanMatcher implements Matcher, void> { private value; constructor(value: T); match(): MatchResult; }