UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

9 lines (8 loc) 227 B
import React from "react"; interface ChatInputBoxProps { value: string; onChange: (text: string) => void; onSend: (text: string) => void; } export declare const ChatInputBox: React.FC<ChatInputBoxProps>; export {};