import { Matcher } from "./Matcher";
export declare class NotMatcher extends Matcher {
    private _delegate;
    constructor(_delegate: Matcher);
    match(value: any): boolean;
    toString(): string;
}
