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

12 lines (11 loc) 333 B
import type React from 'react'; import type { Plan } from '@base/api'; type AutofunSubscriptionModalProps = { isOpen: boolean; isLoading: boolean; agentPlan?: Plan; closeModal: () => void; onSubmit: () => void; }; export declare const AutofunSubscriptionModal: React.FC<AutofunSubscriptionModalProps>; export {};