import { type Items } from './index.js'; declare function useHoverGroup(props: { items?: Items; activeMatcher?: (item: Items[number]) => boolean; position?: 'left' | 'center' | 'right'; } | { customChildren?: React.ReactNode; position?: 'left' | 'center' | 'right'; }): { hoverGroup: import("react/jsx-runtime").JSX.Element; handleMouseEnter: () => void; handleMouseLeave: () => void; }; export { useHoverGroup };