interface Props { onClose: () => void; onNewChat: () => void; } declare const ChatBotHeader: ({ onClose, onNewChat }: Props) => import("react/jsx-runtime").JSX.Element; export default ChatBotHeader;