import { ButtonProps, TooltipProps } from '@patternfly/react-core'; export interface ChatbotHeaderMenuProps extends ButtonProps { /** Callback function to attach to menu toggle on top right of chatbot header. */ onMenuToggle: () => void; /** 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 */ menuAriaLabel?: string; /** Ref applied to menu */ innerRef?: React.Ref; /** Content used in tooltip */ tooltipContent?: string; /** Sets menu to compact styling. */ isCompact?: boolean; } export declare const ChatbotHeaderMenu: import("react").ForwardRefExoticComponent>;