/**
 * Identifies the overall test result of a group of individual test scenarios.
 * - Tag: 3070
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TestSuiteStatus: Readonly<{
    /** Undefined */
    readonly Undefined: 0;
    /** Pass */
    readonly Pass: 1;
    /** Fail */
    readonly Fail: 2;
    /** Warning */
    readonly Warning: 3;
}>;
export type TestSuiteStatus = (typeof TestSuiteStatus)[keyof typeof TestSuiteStatus];
