import type { FunctionComponent } 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 const ChatbotHeaderActions: FunctionComponent = ({ className, children }: ChatbotHeaderActionsProps) =>
{children}
; export default ChatbotHeaderActions;