/** * Protocol buffer wire types for encoding and decoding ESPHome API messages. * * @module protocol/wire-types */ /** * Wire types used in protobuf encoding. These define how data is encoded on the wire in the protocol buffer format. */ export declare enum WireType { VARINT = 0, FIXED64 = 1, LENGTH_DELIMITED = 2, FIXED32 = 5 }