import React, { type CSSProperties, type RefObject } from "react"; import { type AvatarProps } from "../Avatar/Avatar"; import { type AvatarType } from "../Avatar"; import { type ElementContent } from "../../types"; export declare function useTooltipContentTabNavigation({ counterContainerRef, tooltipContentContainerRef, focusPrevPlaceholderRef, focusNextPlaceholderRef, isKeyboardTooltipVisible, setIsKeyboardTooltipVisible }: { counterContainerRef: RefObject; tooltipContentContainerRef: RefObject; focusPrevPlaceholderRef: RefObject; focusNextPlaceholderRef: RefObject; isKeyboardTooltipVisible: boolean; setIsKeyboardTooltipVisible: (value: boolean) => void; }): void; export declare const avatarRenderer: (item: { value: AvatarProps & { tooltipContent: ElementContent; }; }, index: number, style: CSSProperties, type: AvatarType, displayAsGrid: boolean) => React.JSX.Element;