import { type CSSProperties, type ReactNode } from 'react'; export type FrostedGlassNavItem = { disabled?: boolean; href?: string; label: ReactNode; rel?: string; target?: string; value: string; }; export type FrostedGlassNavProps = { activeTextColor?: string; ariaLabel?: string; className?: string; defaultValue?: string; disabled?: boolean; glassTint?: string; items?: FrostedGlassNavItem[]; onValueChange?: (value: string, item: FrostedGlassNavItem) => void; particleCount?: number; style?: CSSProperties; value?: string; }; export declare const FrostedGlassNav: ({ activeTextColor, ariaLabel, className, defaultValue, disabled, glassTint, items, onValueChange, particleCount, style, value, }: FrostedGlassNavProps) => import("react/jsx-runtime").JSX.Element;