import { Location } from './Location.js';
import { Severity } from './Severity.js';
export declare class Violation {
    readonly ruleId: string;
    readonly message: string;
    readonly severity: Severity;
    readonly location: Location;
    constructor(ruleId: string, message: string, severity: Severity, location: Location);
    toString(): string;
    equals(other: Violation): boolean;
}
//# sourceMappingURL=Violation.d.ts.map