import React from 'react'; import { RenderProp, Value, WidgetHandle } from './types'; import { TextAccessorFn, DataKeyAccessorFn } from './Accessors'; export declare type RenderValueProp = RenderProp<{ item: TDataItem; dataKey: Value; text: string; }>; export declare type DropdownInputHandle = WidgetHandle; interface Props { name?: string; autoComplete?: 'on' | 'off'; value: TDataItem; disabled?: boolean; readOnly?: boolean; allowSearch?: boolean; placeholder?: string; textAccessor: TextAccessorFn; dataKeyAccessor: DataKeyAccessorFn; searchTerm?: string; onSearch?: React.ChangeEventHandler; onAutofill(autofilling: boolean): void; onAutofillChange(e: React.ChangeEvent): void; renderValue?: RenderValueProp; } declare const DropdownListInput: React.ForwardRefExoticComponent & React.RefAttributes>; export default DropdownListInput; //# sourceMappingURL=DropdownListInput.d.ts.map