/** * Hook searching for the name of a current game character. This hook must be used in observer component. * * @param roundSet - The round set where character must be searched. * @param playerId - Identification of the player behind the character (may be negative for NPC). * @returns The name of the character. A default value is provided until name is found. */ declare function useCharacterNames(roundSet: number, playerId: number): string; /** * Hook searching for the name of all characters of current game. This hook must be used in observer * component. * * @returns A function used to retrieve the name for each character. This method provides default values * until the true names are found. */ declare function useCharacterNames(): (roundSet: number, playerId: number) => string; export default useCharacterNames;