import { FunctionComponent, ChangeEventHandler, Ref } from 'react'; import { InputLabelPosition } from './InputLabel'; export interface DropdownOptionProps { label: string; value: string; disabled?: boolean; } export interface DropdownProps { id: string; onChange: ChangeEventHandler; name: string; options: Array; value?: string; defaultValue?: string; isRequired?: boolean; errorMessage?: string; label: string; labelPosition?: InputLabelPosition; isLabelVisible?: boolean; forwardRef?: Ref; hideError?: boolean; disabled?: boolean; } declare const Dropdown: FunctionComponent; export default Dropdown;