import * as React from 'react'; import type { ChatBoxProps } from "./ChatBox.types.mjs"; type ChatBoxComponent = ((props: ChatBoxProps & React.RefAttributes) => React.JSX.Element) & { propTypes?: any; }; declare const ChatBox: ChatBoxComponent; export { ChatBox };