import { default as React } from 'react';
import { Agent } from '../../types/agent';
interface AgentInfoProps {
    projectPath?: string;
    showAllAgents?: boolean;
    onAgentSelect?: (agent: Agent) => void;
}
declare const AgentInfo: React.FC<AgentInfoProps>;
export default AgentInfo;
