ze-react-component-library
Version:
ZeroETP React Component Library
19 lines (18 loc) • 433 B
TypeScript
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;