/** * CheckStatus Value Object * Represents the execution status of a check */ export declare enum CheckStatus { PASSED = "passed", FAILED = "failed", SKIPPED = "skipped" } export declare class CheckStatusValue { private readonly value; private constructor(); static passed(): CheckStatusValue; static failed(): CheckStatusValue; static skipped(): CheckStatusValue; isPassed(): boolean; isFailed(): boolean; isSkipped(): boolean; toString(): string; getValue(): CheckStatus; equals(other: CheckStatusValue): boolean; } //# sourceMappingURL=CheckStatus.d.ts.map