/** * Calculates the CRC32 checksum of a string. */ export default class CRC32 { crc: number; constructor(); update(arrayBuffer: any): this; finalize(): number; } //# sourceMappingURL=crc32.d.ts.map