interface AgentSelectorProps { apiKey: string; clusterId: string; onSelectAgent: (agentId: string | null) => void; } export declare const NONE_AGENT_ID = "none"; export declare const AgentSelector: ({ apiKey, clusterId, onSelectAgent }: AgentSelectorProps) => import("react/jsx-dev-runtime").JSX.Element; export {};