/** * Generates a consistent numeric hash from a string. * Used to deterministically select faces and colors for avatars. * * @param str - The input string to hash * @returns A positive 32-bit integer hash */ export declare function stringHash(str: string): number;