interface ChattingFieldProps {
    readonly visibleScrollDown: boolean;
    readonly onScrollDown: () => void;
    readonly onShowEmoticon?: () => void;
    readonly onSendMessage: (message: string) => void;
    readonly onSendEmoticon: (emoticonUrl: string) => void;
    readonly onSendFile: (file: File) => Promise<void>;
}
declare const ChattingField: ({ visibleScrollDown, onScrollDown, onShowEmoticon, onSendMessage, onSendEmoticon, onSendFile, }: ChattingFieldProps) => import("react/jsx-runtime").JSX.Element;
export default ChattingField;
