/**
 * Utility for calculating stable hashcodes for keys used in a cache.
 *
 * @param obj -
 *   object to hash
 * @param seed -
 *   seed to hash with
 * @returns
 *   hash code
 */
export declare function hashcode(obj: string | number | boolean | null, seed?: number): number;
