import React from 'react'; import { TooltipProps } from '@patternfly/react-core'; export interface ChatbotHeaderCloseButtonProps { /** Callback function for when button is clicked */ onClick: () => 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; } export declare const ChatbotHeaderCloseButton: React.ForwardRefExoticComponent>;