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