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

*/ 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 }