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

13 lines (12 loc) 431 B
import type { AiAgent } from '@base/api'; export declare const AGENTS_LIMIT: number; export type UpdatePlansModalProps = { isOpen: boolean; isUpdating: boolean; initialPlans: number; usedPlans: number; agents: AiAgent[]; onCloseModal: () => void; onConfirm: (newPlans: number) => void; }; export declare const UpdatePlansModal: (props: UpdatePlansModalProps) => import("react/jsx-runtime").JSX.Element;