/** * Severity Value Object * Represents the severity level of a check or violation */ export declare enum Severity { ERROR = "error", WARNING = "warning", INFO = "info" } export declare class SeverityValue { private readonly value; private constructor(); static error(): SeverityValue; static warning(): SeverityValue; static info(): SeverityValue; static fromString(value: string): SeverityValue; isError(): boolean; isWarning(): boolean; isInfo(): boolean; isCritical(): boolean; toString(): string; getValue(): Severity; equals(other: SeverityValue): boolean; isMoreSevereThan(other: SeverityValue): boolean; } //# sourceMappingURL=Severity.d.ts.map