import React from 'react'; import type { IDropdown, DropdownOption } from './types'; export declare const Dropdown: ({ options, initialText, size, color, contentPosition, valueKey, labelKey, defaultValue, PreIcon, PostIcon, disabled, onSelect, field, required, errorMessage, ariaDescribedBy }: IDropdown) => React.JSX.Element;