import React from "react"; interface ChatInputBoxProps { onNewChat?: () => void; } declare const ChatInputBox: ({ onNewChat }: ChatInputBoxProps) => React.JSX.Element; export default ChatInputBox;