import React from 'react'; import type { UseAvatarPopoverProps } from './useAvatarPopover.types'; /** * Manages the accessibility behavior for avatar popovers, ensuring they are keyboard navigable * * @see https://procoretech.atlassian.net/browse/UXI-1632?focusedCommentId=6513946 */ export declare const useAvatarPopover: (props: UseAvatarPopoverProps) => { triggerRef: React.RefObject; popoverContentRef: (node: HTMLDivElement | null) => void; beforeShow: (event: Event) => boolean; beforeHide: (event: Event) => boolean; afterHide: () => void; };