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

11 lines (10 loc) 641 B
import { type DotVariants } from '@components/AgentAvatar/AgentActiveDot'; import type { ComponentPropsWithoutRef } from 'react'; export declare const DEFAULT_AVATAR: string; export type AgentAvatarProps = ComponentPropsWithoutRef<'img'>; export declare const AgentAvatar: ({ src, alt, ...props }: AgentAvatarProps) => import("react/jsx-runtime").JSX.Element; export type AgentAvatarWithStatusProps = AgentAvatarProps & { status?: boolean; dotSize?: DotVariants['size']; }; export declare const AgentAvatarWithStatus: ({ status, dotSize, className, ...props }: AgentAvatarWithStatusProps) => import("react/jsx-runtime").JSX.Element;