import React from 'react'; import { InputProps } from '../Input'; interface ComposerInputProps extends InputProps { invisible: boolean; inputRef: React.MutableRefObject; onImageSend?: (file: File) => Promise; } export declare const ComposerInput: ({ inputRef, invisible, onImageSend, ...rest }: ComposerInputProps) => React.JSX.Element; export {};