export declare type ScenarioDisposition = "pending" | "executing" | "completed" | "skipped" | "cancelled" | "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 type ResponseType = "html" | "json" | "image" | "stylesheet" | "script" | "video" | "audio" | "resource" | "browser" | "extjs" | "xml" | "rss" | "atom";
export declare type LineType = "resultPass" | "resultFailure" | "resultOptionalFailure" | "comment" | "detail" | "h1" | "h2" | "h3" | "decoration" | "debugInfo" | "summaryData";
