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