chatui2
Version:
The React library for Chatbot UI
11 lines (10 loc) • 476 B
TypeScript
import React from 'react';
import { InputProps } from '../Input';
interface ComposerInputProps extends InputProps {
invisible: boolean;
inputRef: React.MutableRefObject<HTMLTextAreaElement>;
onImageSend?: (file: File) => Promise<any>;
sendRender?: React.ReactNode;
}
export declare const ComposerInput: ({ inputRef, invisible, onImageSend, sendRender, inputFeaturesRender, inputControllerRender, ...rest }: ComposerInputProps) => React.JSX.Element;
export {};