/* Copyright (c) 2024 Rune AI Inc. All rights reserved. This code is proprietary to Rune AI Inc. The code may be used solely for accessing the Service provided by Rune AI Inc. following the Rune AI Inc. Terms of Service ("Terms") accessible at rune.ai/eula. You may not use this code for any use or purpose other than as expressly permitted by the Terms. Restrictions set forth in the Terms include, but is not limited to, that you may not copy, adapt, modify, prepare derivative works based upon, distribute, license, sell, transfer, publicly display, publicly perform, transmit, stream, broadcast, attempt to discover any source code, reverse engineer, decompile, dissemble, or otherwise exploit the code as a whole or any portion of the code. */ type ClientProtocolVersion = number; type SdkProtocolVersion = number; declare const CLIENT_PROTOCOL_VERSION_RUNE_MSG: ClientProtocolVersion; declare const CLIENT_PROTOCOL_VERSION_SIMPLE_JSON: ClientProtocolVersion; declare const SDK_PROTOCOL_VERSION_RUNE_MSG: SdkProtocolVersion; declare const SDK_PROTOCOL_VERSION_NEW_HEADER: SdkProtocolVersion; declare const SDK_PROTOCOL_VERSION_WITH_COMPRESSION: SdkProtocolVersion; declare const SDK_PROTOCOL_VERSION_LATEST: SdkProtocolVersion; declare const CLIENT_PROTOCOL_VERSION_LATEST: ClientProtocolVersion; export { CLIENT_PROTOCOL_VERSION_LATEST, CLIENT_PROTOCOL_VERSION_RUNE_MSG, CLIENT_PROTOCOL_VERSION_SIMPLE_JSON, ClientProtocolVersion, SDK_PROTOCOL_VERSION_LATEST, SDK_PROTOCOL_VERSION_NEW_HEADER, SDK_PROTOCOL_VERSION_RUNE_MSG, SDK_PROTOCOL_VERSION_WITH_COMPRESSION, SdkProtocolVersion };