import type { FunctionComponent } from 'react'; export interface ChatbotHeaderMainProps { /** Custom classname for the header component */ className?: string; /** Menu and/or chatbot header components */ children: React.ReactNode; } export const ChatbotHeaderMain: FunctionComponent = ({ className, children }: ChatbotHeaderMainProps) => (
{children}
); export default ChatbotHeaderMain;