import { InputProps as AMInputProps } from 'antd-mobile/es/components/input/input'; import React from 'react'; import './index.less'; export interface InputProps extends AMInputProps { style?: React.CSSProperties; type?: 'number' | 'text' | 'bankCard' | 'phone' | 'password' | 'digit' | 'money'; placeholder?: string; value?: string; defaultValue?: string; maxLength?: number; allowClear?: boolean; disabled?: boolean; label?: string; showPercent?: boolean; precision?: number; onChange?: (value: string) => void; } export declare const Input: React.ForwardRefExoticComponent & React.RefAttributes>>; export declare const InputNumber: React.ForwardRefExoticComponent & React.RefAttributes>>;