import { FC, HTMLAttributes, ReactNode } from 'react'; import { SpeechBubbleProps } from '../Avatar'; export type PlayerPanelProps = { playerId: PlayerId; color?: string; activeRing?: boolean; /** Content of the speech bubble displayed next to the player avatar. Hides the chat bubble while displayed. */ speak?: ReactNode; /** Set to false to silence the avatar, true to keep the chat bubble even when no speech bubble props are given. */ speechBubble?: boolean; /** Overrides the speech bubble configuration (direction, css, event handlers...). */ speechBubbleProps?: SpeechBubbleProps; } & HTMLAttributes; export declare const PlayerPanel: FC;