import type { FunctionComponent } from 'react'; import { ModalProps } from '@patternfly/react-core'; import { ChatbotDisplayMode } from '../Chatbot'; export interface ChatbotModalProps extends Omit { /** Display mode for the Chatbot parent; this influences the styles applied */ displayMode?: ChatbotDisplayMode; /** Additional className applied to modal */ className?: string; /** Sets modal to compact styling. */ isCompact?: boolean; } export declare const ChatbotModal: FunctionComponent; export default ChatbotModal;