import React from 'react'; import { Option, WithAsProps } from '../internals/types'; interface SearchViewProps extends WithAsProps { searchKeyword: string; labelKey: string; valueKey: string; parentMap: WeakMap, Option>; data: Option[]; focusItemValue?: T | null; disabledItemValues: any[]; locale?: Record; renderSearchItem?: (label: React.ReactNode, items: Option[]) => React.ReactNode; onSelect: (item: Option, items: Option[], event: React.MouseEvent) => void; onSearch: (value: string, event: React.ChangeEvent) => void; inputRef?: React.RefObject; } declare function SearchView(props: SearchViewProps): React.JSX.Element; export default SearchView;