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