import React from 'react'; import { DropdownProps } from '@patternfly/react-core'; export interface ChatbotConversationHistoryDropdownProps extends Omit { /** Dropdown items rendered in conversation options dropdown */ menuItems: React.ReactNode; /** Optional classname applied to conversation options dropdown */ menuClassName?: string; /** Tooltip content and aria-label applied to conversation options dropdown */ label?: string; /** Callback for when user selects item. */ onSelect?: (event?: React.MouseEvent, value?: string | number) => void; } export declare const ChatbotConversationHistoryDropdown: React.FunctionComponent; export default ChatbotConversationHistoryDropdown;