import React from 'react'; export interface ChatbotHeaderActionsProps { /** Content to be displayed in the chatbot header */ children: React.ReactNode; /** Custom classname for the header component */ className?: string; } export declare const ChatbotHeaderActions: React.FunctionComponent; export default ChatbotHeaderActions;