import React from 'react'; import { AlertProps } from '@patternfly/react-core'; export interface ChatbotAlert extends AlertProps { /** Callback for when close button is clicked; if none is provided, there will be no way to dismiss the alert */ onClose?: () => void; } export declare const ChatbotAlert: React.FunctionComponent; export default ChatbotAlert;