import { FormConfig } from '../../Form/types'; interface ChatFooterProps { chatSessionId: string; messageCount: number; isListeningForResponse: boolean; handleStopResponse: () => void; clearConversation: () => void; isViewOnly: boolean | undefined; isInputDisabled: boolean | undefined; inWorkflow: boolean | undefined; openForm?: (form: FormConfig) => void; onModalClose?: () => void; } declare const ChatFooter: ({ chatSessionId, messageCount, isListeningForResponse, handleStopResponse, clearConversation, isViewOnly, isInputDisabled, inWorkflow, openForm, onModalClose, }: ChatFooterProps) => import("react/jsx-runtime").JSX.Element; export default ChatFooter;