@chatui/core
Version:
The React library for Chatbot UI
10 lines (9 loc) • 386 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>;
}
export declare const ComposerInput: ({ inputRef, invisible, onImageSend, ...rest }: ComposerInputProps) => React.JSX.Element;
export {};