import React from 'react';
interface ChatTextareaProps {
    initValue: string;
    onSend: (query: string) => void;
    disabled?: boolean;
    placeholder?: string;
    isFetching: boolean;
    forceStop: () => void;
    renderToolbar: (sendButton: JSX.Element) => JSX.Element | null;
}
export declare const ChatTextareaComponent: React.FC<ChatTextareaProps>;
export {};
