UNPKG

ze-react-component-library

Version:
19 lines (18 loc) 433 B
import React from "react"; import "./index.less"; declare global { interface Window { tt: any; } } export declare type InputBarProps = { placeholder?: string; loading?: boolean; onSubmit?: (value: string) => void; onTouchStart?: () => void; onTouchEnd?: () => void; questionToEdit?: string; onlineHistory?: any; }; declare const InputBar: React.FC<InputBarProps>; export default InputBar;