import React, { ReactNode } from 'react'; interface Item { value: string; label?: ReactNode; } interface PopupProps { options: Item[]; searchValue: string; onChange: (v: string) => void; handleSearch?: false | ((item: Item) => boolean); loading?: boolean; } export interface ListRef { moveUp: () => void; moveDown: () => void; select: () => void; } declare const _default: React.MemoExoticComponent>>; export default _default;