import { type CSSProperties } from 'react'; export type HoverImageMenuItem = { disabled?: boolean; id: string; imageSrc: string; label: string; }; export type HoverImageMenuProps = { ariaLabel?: string; className?: string; defaultValue?: string; duration?: number; items?: HoverImageMenuItem[]; name?: string; onValueChange?: (value: string, item: HoverImageMenuItem) => void; style?: CSSProperties; value?: string; }; export declare const HoverImageMenu: ({ ariaLabel, className, defaultValue, duration, items, name, onValueChange, style, value, }: HoverImageMenuProps) => import("react/jsx-runtime").JSX.Element;