export declare enum KnxErrorCode { /** * Operation successful. */ NO_ERROR = 0, /** * The requested type of host protocol is not supported by the device. */ HOST_PROTOCOL_TYPE = 1, /** * The requested protocol version is not supported by the device. */ VERSION_NOT_SUPPORTED = 2, /** * The received sequence number is out of order. */ SEQUENCE_NUMBER = 4, /** * The server device could not find an active data connection with the specified ID. */ CONNECTION_ID = 33, /** * The server does not support the requested connection type. */ CONNECTION_TYPE = 34, /** * The server does not support the requested connection options. */ CONNECTION_OPTION = 35, /** * The server could not accept a new connection, maximum reached. */ NO_MORE_CONNECTIONS = 36, /** * The server could not accept a new connection, out of channels */ NO_MORE_CHANNELS = 37, /** * The server detected an error concerning the data connection with the specified ID. */ DATA_CONNECTION = 38, /** * The server detected an error concerning the KNX subsystem connection with the specified ID. */ KNX_CONNECTION = 39, /** * The requested tunneling layer is not supported by the server. */ TUNNELING_LAYER = 41, /** * Error code is not recognized. */ UNKNOWN_ERROR = 255 } //# sourceMappingURL=error-code.d.ts.map