UNPKG

@fleek-platform/agents-ui

Version:

The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward

9 lines (8 loc) 233 B
import type { AiAgent } from '@base/api'; import type React from 'react'; type AgentListProps = { agents: AiAgent[] | undefined; agentsLoading: boolean; }; export declare const AgentList: React.FC<AgentListProps>; export {};