declare enum TypeOfData { Int8 = 0, Uint8 = 1, Int16 = 2, Uint16 = 3, Int32 = 4, Uint32 = 5, Float32 = 6, Float64 = 7, Structure = 8 } export default TypeOfData; export declare const getDataByteLength: (type: TypeOfData) => number;