export declare enum ScenarioDisposition {
    pending = "pending",
    excuting = "executing",
    completed = "completed",
    skipped = "skipped",
    cancelled = "cancelled",
    aborted = "aborted"
}
export declare enum ScenarioStatusEvent {
    beforeExecute = "beforeExecute",
    executionStart = "executionStart",
    executionSkipped = "executionSkipped",
    executionCancelled = "executionCancelled",
    executionAborted = "executionAborted",
    executionProgress = "executionProgress",
    afterExecute = "afterExecute",
    finished = "finished"
}
export declare enum SuiteStatusEvent {
    beforeAllExecute = "beforeAllExecute",
    beforeEachExecute = "beforeEachExecute",
    afterEachExecute = "afterEachExecute",
    afterAllExecute = "afterAllExecute",
    finished = "finished"
}
export declare enum LineType {
    resultPass = "resultPass",
    resultFailure = "resultFailure",
    resultFailureDetails = "resultFailureDetails",
    resultFailureSource = "resultFailureSource",
    resultOptionalFailure = "resultOptionalFailure",
    comment = "comment",
    detail = "detail",
    h1 = "h1",
    h2 = "h2",
    h3 = "h3",
    decoration = "decoration",
    debugInfo = "debugInfo",
    summaryData = "summaryData"
}
