/**
 * Compute the CRC32 checksum for a string
 *
 * @param input The string
 * @return the CRC32 checksum
 */
export declare function crc32(input: string): number;
export default crc32;
