export default Crc32;
declare class Crc32 {
  crc: number;
  append(data: any): void;
  get(): number;
  table: any[];
}
