import { Player } from '@gamepark/react-client'; import { SpeechBubbleProps } from './SpeechBubble'; type Props = { gameId: string; player: Player; } & SpeechBubbleProps; export declare const ChatSpeechBubble: ({ gameId, player, ...props }: Props) => import("@emotion/react/jsx-runtime").JSX.Element | null; export {};