import { Assertion } from '../assertion'; import { Inspector } from '../inspector'; export declare class NegatedAssertion extends Assertion { private readonly negated; constructor(negated: Assertion); assertUsing(inspector: I): boolean; get description(): string; }