import { Expected, MatchResult3 } from '../types'; import { MatcherSyncOrAsync } from '../MatcherSyncOrAsync'; export declare class MatcherNot extends MatcherSyncOrAsync { private readonly _expected; constructor(async: Async, expected: Expected); matchAsync(actual: T): Promise; matchSync(actual: T): MatchResult3; toString(): string; }