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"
}
