import React from 'react'; import { SearchConfig, TextStyle } from '../type'; interface SearchProps { searchConfig: SearchConfig; textStyle: TextStyle; defaultValue: string; searchRef: any; onChange: (val: string) => void; onFocus: () => void; onBlur: (e: any) => void; } declare const _default: React.MemoExoticComponent<({ searchConfig, textStyle, onChange, onFocus, onBlur, defaultValue, searchRef }: SearchProps) => React.JSX.Element>; export default _default;