import React, { type ReactElement, type Ref } from "react"; import { type AvatarProps } from "../Avatar/Avatar"; import type VibeComponentProps from "../../types/VibeComponentProps"; import { type AvatarType } from "../Avatar/Avatar.types"; export interface AvatarGroupCounterTooltipContentProps extends VibeComponentProps { /** * The type of avatars displayed inside the tooltip. */ type?: AvatarType; /** * The avatars shown in the tooltip. */ avatars?: ReactElement[]; /** * If true, the tooltip uses a virtualized list for performance optimization. */ isVirtualizedList?: boolean; /** * Ref for the tooltip content container. */ tooltipContentContainerRef?: Ref; } declare const AvatarGroupCounterTooltipContent: React.FC; export default AvatarGroupCounterTooltipContent;