import React from 'react'; import './index.less'; import type { FormNativeProps } from '@zbanx/mobile-utils'; declare type Value = number | string; export interface SinglePopupProps extends Omit, 'style' | 'className'> { visible?: boolean; options?: { label?: React.ReactNode; value?: Value; }[]; label?: React.ReactNode; onClose?: () => void; } declare const SinglePopup: React.NamedExoticComponent; export default SinglePopup;