import type React from 'react';
import type { FleekAgent } from '../hooks/useFleekAgents';
export type FleekAgentsChatInterfaceProps = {
    agent?: FleekAgent;
    status: 'true' | 'false' | undefined;
    error: Error | null;
    isReady: boolean;
    agentIsActive: boolean;
};
export declare const FleekAgentsChatInterface: React.FC<FleekAgentsChatInterfaceProps>;
