/**
 * Specifies the type of action to take or that was taken for a given test suite.
 * - Tag: 3067
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TestActionType: Readonly<{
    /** Start */
    readonly Start: 0;
    /** Stop */
    readonly Stop: 1;
    /** State */
    readonly State: 2;
}>;
export type TestActionType = (typeof TestActionType)[keyof typeof TestActionType];
