import { HTMLAttributes } from 'react'; import { SpeechBubbleProps } from './SpeechBubble'; export declare const Avatar: import("react").ForwardRefExoticComponent<{ playerId: any; /** * Whether this avatar displays a speech bubble (the player chat messages, or the content of {@link speechBubbleProps}). * Defaults to true as soon as {@link speechBubbleProps} is provided, so that decorative avatars (dialogs, logs, * headers...) stay silent. Set it explicitly to display the chat bubble without configuring anything else, * or to false to silence an avatar that does receive speech bubble props. */ speechBubble?: boolean; speechBubbleProps?: SpeechBubbleProps; } & HTMLAttributes & import("react").RefAttributes>;