/**
* The different possible mode independent specific error codes.
- ERROR(2000) - Unspecified error.
- INVALID_REQUEST(2001) - The request could not be processed by the device due to the request content.
- METHOD_NOT_FOUND(2002) - The requested operation is not supported by the device or the current device mode.
*/
export declare enum BASEModeErrors {
/**
* Unspecified error
*/
ERROR = 2000,
/**
* The request could not be processed by the device due to the request content.
*/
INVALID_REQUEST = 2001,
/**
* The requested operation is not supported on the device.
*/
METHOD_NOT_FOUND = 2002
}