import { FC, HTMLAttributes } from 'react'; type ChatProps = { open: boolean; gameId?: string; } & HTMLAttributes; export declare const Chat: FC; export {};