declare enum RunStatus {
    /**
     * Indicates that a test run is completed with failed or succeeded tests
     */
    Complete = 0,
    /**
     * Indicates that a test run cut off early with an error
     */
    Error = 1,
    /**
     * Indicates that a test run timed out
     */
    Timeout = 2
}
export default RunStatus;
//# sourceMappingURL=RunStatus.d.ts.map