import { type ParticipantColor } from './consts'; /** * Generates a hash code for a given string. * * This function computes a hash code by iterating over each character * in the string and applying bitwise operations to accumulate the hash value. * * @param str - The input string for which the hash code is to be generated. * @returns The computed hash code as a number. */ export declare function getHashCode(str: string): number; /** * Returns the participant color based on the hash code of the input string. * * @param str - The input string used to determine the participant color. * @returns An object containing the index and the corresponding participant color. */ export declare function getParticipantColor(str: string): { color: ParticipantColor; index: number; };