/** * Calculate the Hamming distance between two perceptual hashes * @param a The first hash * @param b The second hash * @returns The Hamming distance between the two hashes */ declare function distance(a: string, b: string): number; export default distance;