import { HTMLAttributes } from 'react'; import { ChatFormStyles } from './styles'; export interface ChatFormProps extends HTMLAttributes, ChatFormStyles { onFormSubmit?: (value: string) => void; renderChatForm?: (props: ChatFormProps) => JSX.Element | Element | React.FC; }