import type { FunctionComponent } from 'react'; import { TooltipProps, DropdownProps, MenuToggleProps } from '@patternfly/react-core'; export interface ChatbotHeaderOptionsDropdownProps extends Omit { /** 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; /** Sets menu to compact styling. */ isCompact?: boolean; /** Additional props passed to toggle */ toggleProps?: MenuToggleProps; } export declare const ChatbotHeaderOptionsDropdown: FunctionComponent; export default ChatbotHeaderOptionsDropdown;