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) 402 B
import type { CaptureEventFn } from '@config/events'; import type { AuthStore } from '@fleek-platform/login-button'; /** Main interface. */ export interface AppProps { authStoreInstance: AuthStore; captureEvent?: CaptureEventFn; basePath?: `/${string}`; loginButton: React.ReactNode; } /** Package will define and export this component. */ export declare const App: React.FC<AppProps>;