/**
* The different possible MAINTENANCE mode specific error codes.
- ERROR(6000) - Unspecified MAINTENANCE error
- OPERATION_FAILED(6001) - The device failed to complete the MAINTENANCE operation successfully.
*/
export declare enum MAINTENANCEModeErrors {
/**
* Unspecified MAINTENANCE error
*/
ERROR = 6000,
/**
* Failed to restart the device.
*/
RESTART_FAILED = 6001
}