import { ReactElement } from 'react'; import { AvatarProps } from '../../../../../../../../../src/components/Avatar'; export interface AgentCardProps { agentName: string; agentStatus: "connected" | "not-ready" | "ready"; avatar?: ReactElement; } export declare const AgentCard: { ({ agentName, agentStatus, avatar, }: AgentCardProps): import("react/jsx-runtime").JSX.Element; displayName: string; };