import React from 'react'; import { DropdownProps, Value } from '../types'; export declare function Dropdown({ variant, id, name, label, required, placeholder, hasError, errorText, optionalText, prefix, assistText, options, onOpen, onClose, onFocus, onBlur, disabled, maxHeight, touched, width, noMargin, ...props }: DropdownProps): React.JSX.Element;