import { ConditionEvent } from './ConditionEvent';
export declare class SimpleConditionEvent implements ConditionEvent {
    readonly description: string;
    private readonly violation;
    constructor(description: string, violation: boolean);
    invert(): ConditionEvent;
    isViolation(): boolean;
    getDescriptionLines(): string[];
    static violated(message: string): ConditionEvent;
}
