import { default as React } from 'react'; import { ChatHeaderConfig, ChatIcons, ChatTooltips } from '../types'; interface ChatHeaderProps { config?: ChatHeaderConfig; icons?: ChatIcons; tooltips?: ChatTooltips; onMinimize?: () => void; onClose?: () => void; onRestart?: () => void; onDragStart?: (event: React.PointerEvent) => void; draggable?: boolean; } export declare function ChatHeader({ config, icons, tooltips, onMinimize, onClose, onRestart, onDragStart, draggable }: ChatHeaderProps): React.JSX.Element; export default ChatHeader;