/// export interface Option { disabled?: boolean; icon?: (props: any) => JSX.Element; label: string; value: string; } export interface DropdownProps { className?: string; disabled?: boolean; helperText?: string; id?: string; initialValue?: string | Option; isClearable?: boolean; label?: string; onChange?: (value: string) => void; options?: Option[]; placeholder?: string; variant?: string; width?: number; withBorders?: boolean; withSelectLabel?: boolean; } export declare const Dropdown: ({ id, initialValue, options, label, helperText, variant, width, onChange, isClearable, withSelectLabel, disabled, placeholder, withBorders, className, }: DropdownProps) => import("react/jsx-runtime").JSX.Element;