export interface ConnectedAgent { id: string; name: string; description: string; url: string; color: string; source: "builtin" | "custom" | "workspace"; resourceId?: string; path?: string; scope?: "shared" | "personal"; } export declare function AgentsPanel({ agents, onRefresh, }: { agents: ConnectedAgent[]; onRefresh: () => void; }): import("node_modules/@types/react").JSX.Element; //# sourceMappingURL=agents-panel.d.ts.map