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 {};
