export declare abstract class Matcher {
    abstract check(v: unknown): boolean;
    abstract toString(): string;
    valueOf(): string;
}
