import * as React from 'react'; import { TBaseHtmlProps } from "../common.type"; export interface ChatBoxProps extends TBaseHtmlProps { children: React.ReactNode; showGlow?: boolean; 'data-test'?: string; className?: string; } export declare const ChatBox: { (props: ChatBoxProps): React.JSX.Element; defaultProps: { showGlow: boolean; }; }; export default ChatBox;