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