import type * as React from "react"; export type McpServerAvatarStackItem = { id: string; name: string; toolkitId?: string; selectedCount?: number; total?: number; }; export type McpServerAvatarStackProps = { servers: McpServerAvatarStackItem[]; maxVisible?: number; overflowLabel?: string; onOpenMcpServer?: (id: string) => void; } & Omit, "children">; export declare function McpServerAvatarStack({ servers, maxVisible, overflowLabel, onOpenMcpServer, className, ...rest }: McpServerAvatarStackProps): React.JSX.Element | null; //# sourceMappingURL=server-avatar-stack.d.ts.map