/**
 * Status of `LogEvent`.
 */
export declare const enum LogEventStatus {
    Failed = "failed",
    Passed = "passed"
}
/**
 * Type of `LogEvent`.
 */
export declare const enum LogEventType {
    Action = 1,
    Assert = 2,
    Entity = 3,
    Util = 4,
    InternalAction = 5,
    InternalAssert = 6,
    InternalCore = 7,
    InternalUtil = 8,
    Unspecified = 9
}
