/** * Computes the CRC16 checksum of the given data. * * @param data - A string or Uint8Array to compute the checksum for. * @returns The computed CRC16 checksum. */ export declare function crc16(data: string | Uint8Array): number;