import React from 'react'; import { ButtonProps, TooltipProps } from '@patternfly/react-core'; export interface ChatbotToggleProps extends ButtonProps { /** Contents of the tooltip applied to the toggle button */ toolTipLabel?: React.ReactNode; /** Props spread to the PF Tooltip component */ tooltipProps?: Omit; /** Flag indicating visibility of the chatbot appended to the toggle */ isChatbotVisible?: boolean; /** Callback fired when toggle button is clicked */ onToggleChatbot?: () => void; /** Accessible label for the toggle button */ toggleButtonLabel?: string; /** An image displayed in the chatbot toggle when it is closed */ closedToggleIcon?: () => JSX.Element; } export declare const ChatbotToggle: React.FunctionComponent; export default ChatbotToggle;