import React from 'react'; import type { NativeProps } from '@zbanx/mobile-utils'; import type { SearchInputProps } from '../../'; import type { Option } from '../filter/type'; import './index.less'; export interface SearchBarPopupProps extends NativeProps { placeholder?: string; onSearchOptions?: SearchInputProps['onSearchOptions']; onSearch?: (value?: Option['value']) => void; } declare const SearchBarPopup: React.NamedExoticComponent; export default SearchBarPopup;