import React from 'react'; import './index.less'; interface BottomProps { text?: React.ReactNode; onClick?: () => void | Promise; } export interface SelectPopupProps { /** * @description 清除 */ clearAll?: boolean; className?: string; visible?: boolean; onClear?: () => void; onClose?: () => void; label?: React.ReactNode; /** * @description 清除 */ bottom?: false | BottomProps; /** * @description 滚动Ref */ scrollRef?: React.RefObject; destroyOnClose?: boolean; } /** * @Author: wangyi * @Date: 2022-02-17 */ declare const SelectPopup: React.FC; export default SelectPopup;