UNPKG

samagra-chatui

Version:
10 lines (9 loc) 396 B
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, disabled, ...rest }: ComposerInputProps) => React.JSX.Element; export {};