import React from 'react'; import type { Option, WithAsProps } from '../internals/types'; interface SearchViewProps extends WithAsProps { searchKeyword: string; labelKey: string; valueKey: string; childrenKey: string; value: T[]; data: Option[]; disabledItemValues: any[]; cascade?: boolean; locale?: Record; onSearch: (value: string, event: React.ChangeEvent) => void; onCheck: (item: Option, event: React.SyntheticEvent, checked: boolean) => void; inputRef?: React.RefObject; } declare function SearchView(props: SearchViewProps): React.JSX.Element; export default SearchView;