@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
10 lines (9 loc) • 357 B
TypeScript
import type { Plan } from '@base/api';
import type { GetBillingReturn } from '@base/hooks/useBilling';
interface AgentPlanProps {
plan?: Plan;
billing?: GetBillingReturn;
deployedAgents?: number;
}
export declare const AgentPlan: ({ plan, billing, deployedAgents, }: AgentPlanProps) => import("react/jsx-runtime").JSX.Element | null;
export {};