import { type CSSProperties, type ReactNode } from 'react'; export type SpotlightNavMenuItem = { disabled?: boolean; href: string; label: ReactNode; rel?: string; target?: string; value: string; }; export type SpotlightNavMenuBeam = { color: string; delay?: number; duration?: number; }; export type SpotlightNavMenuProps = { ariaLabel?: string; beams?: SpotlightNavMenuBeam[]; className?: string; defaultValue?: string; items?: SpotlightNavMenuItem[]; onValueChange?: (value: string, item: SpotlightNavMenuItem) => void; style?: CSSProperties; value?: string; }; export declare const SpotlightNavMenu: ({ ariaLabel, beams, className, defaultValue, items, onValueChange, style, value, }: SpotlightNavMenuProps) => import("react/jsx-runtime").JSX.Element;