/**
* Specifies the activity state the test suite is in.
* - Tag: 3069
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declareconstTestSuiteActivityState: Readonly<{
readonly Scheduled: 0;
readonly Completed: 1;
readonly Cancelled: 2;
}>;