import { MutableRefObject, ReactElement, ReactNode } from 'react'; type CommonChatProps = { children?: ReactNode; gameId?: string; loading?: boolean; hasMoreMessages?: boolean; messages: any[]; fetchMore: () => void; Input: ReactElement; shouldScroll: MutableRefObject; }; export declare function CommonChat(props: CommonChatProps): import("@emotion/react/jsx-runtime").JSX.Element; export {};