import React from "react"; declare type IProps = { dataList: Array; onListClick?(value: string | undefined, id: string | undefined): void; placeholder?: string; label?: string; onFindOne?(label?: string | null, id?: string): any; setIsMatched?(foo?: boolean): any; onTypeChange?(foo?: string): any; onSearch?(value?: string): any; staticList?: boolean; filter?: boolean; isMatched?: boolean; isLoading?: boolean; alwaysListShow?: boolean; setTypeWhenFindOne?: boolean; onTypeValue?: string; asName?: string; asDetail?: string; asId?: string; feedBackMessage?: string; maxCount?: number; }; declare const JDsearchInput: React.FC; export default JDsearchInput;