import type { FunctionComponent } from 'react'; import { TooltipProps, DropdownProps, MenuToggleProps } from '@patternfly/react-core'; export interface ChatbotHeaderSelectorDropdownProps extends Omit { /** Value of the selected dropdown item */ value: string; /** Content to be displayed in the chatbot header */ children: React.ReactNode; /** Custom classname for the header component */ className?: string; /** Props spread to the PF Tooltip component wrapping the display mode dropdown */ tooltipProps?: TooltipProps; /** Aria label for menu toggle */ menuToggleAriaLabel?: string; /** Text displayed in Tooltip wrapping the display mode dropdown */ tooltipContent?: string; /** Sets menu to compact styling. */ isCompact?: boolean; /** Additional props passed to toggle */ toggleProps?: MenuToggleProps; /** Custom width for the dropdown */ dropdownWidth?: string; } export declare const ChatbotHeaderSelectorDropdown: FunctionComponent; export default ChatbotHeaderSelectorDropdown;