import { Message } from '@gamepark/react-client'; import { FC } from 'react'; type LocalChatTextInputProps = { onMessageSent: (message: Message) => void; messages: number; open: boolean; }; export declare const LocalChatTextInput: FC; type RemoteChatTextInputProps = { channel: string; open: boolean; }; export declare const RemoteChatTextInput: FC; type ChatInputProps = { onSubmit: (text: string) => void; open: boolean; }; export declare const ChatInput: FC; export {};