@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
17 lines (16 loc) • 718 B
TypeScript
import type { Plan } from '@base/api';
import { type GetBillingReturn } from '@base/hooks/useBilling';
export declare const AGENTS_LIMIT: number;
interface UpdatePlanModalProps {
plan?: Plan;
billing?: GetBillingReturn;
deployedAgents?: number;
}
interface UpdatePlanQuantityModalStore extends UpdatePlanModalProps {
isUpdatePlanModalVisible: boolean;
closeSubscriptionModal: () => void;
openSubscriptionModal: (args: UpdatePlanModalProps) => void;
}
export declare const useUpdatePlanQuanityModal: import("zustand").UseBoundStore<import("zustand").StoreApi<UpdatePlanQuantityModalStore>>;
export declare const UpdatePlanQuantityModal: () => import("react/jsx-runtime").JSX.Element;
export {};