/** * The different possible HSSP mode specific error codes.

*/ export declare enum HSSPModeErrors { /** * Unspecified HSSP error. */ ERROR = 4000, /** * The device could not download the specified script. */ DOWNLOAD_FAILED = 4001, /** * The validation of the script hash failed. */ HASH_ERROR = 4002, /** * The device need to resync with the server before the setup can be peformed. */ SYNC_REQUIRED = 4003, /** * Generic token error. */ TOKEN_ERROR = 4004, /** * The script is too large for the device. */ MAX_SCRIPT_SIZE_ERROR = 4005, /** * The device storage is full. */ DEVICE_STORAGE_FULL_ERROR = 4006, /** * The device storage does not have enough free space to store the script. */ DEVICE_STORAGE_FREE_ERROR = 4007, /** * An attempt to free up device storage space failed. */ DEVICE_STORAGE_CLEAN_ERROR = 4008 }