import React from "react"; import type { Character } from "../../../nlcore/elements/character"; import type { NvlDialogEntry } from "../../gameState"; type NametagProps = React.HTMLAttributes & { entry?: NvlDialogEntry; character?: Character | null; }; export default function Nametag({ entry, character, ...props }: Readonly): React.JSX.Element; export {};