/**
 * ref: - [How to calculate the CRC of an arrayBuffer (From FileReader in javascript) compatible with the CRC32 function in php? - Stack Overflow]( https://stackoverflow.com/questions/29416900/how-to-calculate-the-crc-of-an-arraybuffer-from-filereader-in-javascript-compa )
 */
export declare function crc32FromArrayBuffer(ab: Uint8Array): number;
