/** * Creates a 32bit hash code from a string * * @param str The string to hash. * @return A 32bit integer * @see https://stackoverflow.com/questions/7616461/generate-a-hash-from-string-in-javascript */ export declare function hashString(str: string): number; export declare function normalize(val: number, min: number, max: number): number; //# sourceMappingURL=hash.d.ts.map