import React from 'react'; import type { Option } from '../filter/type'; import './index.less'; export interface SearchInputProps { value?: string; visible?: boolean; onSearchOptions?: (value: string) => Promise; label?: React.ReactNode; onClose?: () => void; onConfirm?: (value?: Option) => void; } /** * @Author: wangyi * @Date: 2022-02-18 */ declare const SearchInput: React.ForwardRefExoticComponent>; export default SearchInput;