import React from 'react'; import { RenderValueProp } from './DropdownListInput'; import { BaseListboxInputProps, Filterable, PopupWidgetProps, Searchable, WidgetHTMLProps, WidgetProps } from './shared'; import { DataItem, WidgetHandle } from './types'; export declare type DropdownHandle = WidgetHandle; export interface DropdownProps extends WidgetProps, WidgetHTMLProps, PopupWidgetProps, Searchable, Filterable, BaseListboxInputProps { name?: string; autoFocus?: boolean; autoComplete?: 'on' | 'off'; onCreate?: (searchTerm: string) => void; renderValue?: RenderValueProp; } declare interface DropdownList { (props: DropdownProps & React.RefAttributes): React.ReactElement | null; displayName?: string; propTypes?: any; } /** * A `