import { type CSSProperties } from 'react'; export type GlassDropdownOption = { backgroundImage?: string; description?: string; disabled?: boolean; image?: string; label: string; meta?: string; value: string; }; export type GlassDropdownProps = { ariaLabel?: string; className?: string; defaultValue?: string; disabled?: boolean; name?: string; onValueChange?: (value: string, option: GlassDropdownOption) => void; options?: GlassDropdownOption[]; placeholder?: string; selectClassName?: string; style?: CSSProperties; value?: string; }; export declare const GlassDropdown: ({ ariaLabel, className, defaultValue, disabled, name, onValueChange, options, placeholder, selectClassName, style, value, }: GlassDropdownProps) => import("react/jsx-runtime").JSX.Element;