import { ITouchEvent, InputProps } from '@tarojs/components'; import React from 'react'; import { BaseIptBoxProps } from './useIptHook'; declare type InputType = 'text' | 'number' | 'idcard' | 'digit' | 'safe-password' | 'nickname' | 'numberpad' | 'digitpad' | 'idcardpad'; declare type BaseIptProps = Omit & BaseIptBoxProps & Partial<{ type: InputType | 'phone' | 'password'; error: boolean; clear: boolean; onConfirm: (value: string, event?: ITouchEvent) => void; }>; declare const _default: React.NamedExoticComponent; export default _default;