import { CSSProperties, ReactNode } from 'react'; import { OptionProps } from '../interface'; import Store from '../base/store'; export declare const getLegalIndex: (currentIndex: any, maxIndex: any) => any; export declare type SearchPanelProps = { store?: Store; style?: CSSProperties; prefixCls?: string; multiple?: boolean; value: string[][]; inputValue?: string; onEsc?: () => void; onChange?: (value: string[][]) => void; renderEmpty?: () => ReactNode; }; declare const SearchPanel: (props: SearchPanelProps) => JSX.Element; export default SearchPanel;