/**
* Possible HSSP states:
- NEED_SYNC(1) - The device need to synchronize with the server. Only returned from devices with firmware version <= 3.1.x
- NEED_SETUP(2) - No script have yet been setup on the device.
- STOPPED(3) - The script execution is stopped.
- PLAYING(4) - The device is executing the script.
*/
export declare enum HSSPState {
/**
* NEED_SYNC
*/
NEED_SYNC = 1,
/**
* NEED_SETUP
*/
NEED_SETUP = 2,
/**
* STOPPED
*/
STOPPED = 3,
/**
* PLAYING
*/
PLAYING = 4
}