import React from 'react'; import type { NativeProps } from '@zbanx/mobile-utils'; import './index.less'; export interface InputPopupProps extends NativeProps { visible?: boolean; label?: React.ReactNode; placeholder?: string; onClose?: () => void; onConfirm?: (value: string) => void; value?: string; defaultValue?: string; onChange?: (value: string) => void; } declare const InputPopup: React.NamedExoticComponent; export default InputPopup;