import { MessageDefinition } from '../../../core/types.js';

declare const PROTOCOL_VERSION_ID = 300;
declare const PROTOCOL_VERSION_CRC_EXTRA = 0;
declare const ProtocolVersionDefinition: MessageDefinition;
interface MessageProtocolVersion {
    version: number;
    min_version: number;
    max_version: number;
    spec_version_hash: number[];
    library_version_hash: number[];
}

export { PROTOCOL_VERSION_CRC_EXTRA, PROTOCOL_VERSION_ID, ProtocolVersionDefinition };
export type { MessageProtocolVersion };
