import type React from 'react';
type FleekAgentsChatInterfaceTextareaProps = {
    isDisabled?: boolean;
    agentName: string;
    handleSubmit: (message: string) => void;
};
export declare const FleekAgentsChatInterfaceTextarea: React.FC<FleekAgentsChatInterfaceTextareaProps>;
export {};
