export declare type TestContextEntityStateOk = 0; export declare type TestContextEntityStateWarning = 1; export declare type TestContextEntityStateCritical = 2; export declare type TestContextEntityStateUnknown = 3; export declare type TestContextEntityStateError = 4; export declare type TestContextEntityState = TestContextEntityStateOk | TestContextEntityStateWarning | TestContextEntityStateCritical | TestContextEntityStateUnknown | TestContextEntityStateError; export declare class TestContextEntityStates { static readonly OK: TestContextEntityStateOk; static readonly WARNING: TestContextEntityStateWarning; static readonly CRITICAL: TestContextEntityStateCritical; static readonly UNKNOWN: TestContextEntityStateUnknown; static readonly ERROR: TestContextEntityStateError; } export declare function getReadableStateName(state: TestContextEntityState): string; //# sourceMappingURL=test-context-entity-state.class.d.ts.map