import React from 'react'; import { TooltipProps, DropdownProps } 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; } export declare const ChatbotHeaderOptionsDropdown: React.FunctionComponent; export default ChatbotHeaderOptionsDropdown;