type Tlv = { tag: string | number; length: number; value: any; }; /** * Given an array of TLV-like objects, return a Map containing the TLV values indexed by tag. * TLV objects with duplicate tags are indexed as arrays. * * @param chunks */ declare const indexChunks: (chunks: Tlv[]) => Map; export { Tlv, indexChunks };