import * as React from 'react'; export interface PropsType { type?: '1' | '2'; inputType?: 'creditCard' | 'debitCard' | 'telePhone' | 'mobilePhone' | 'number'; defaultValue?: string; leftText?: string; placeholder?: string; editable?: boolean; showClearIcon?: boolean; maxLength?: number; showErrorInfo?: boolean; info?: string; label?: string; rightText?: string; titleIcon?: string; rightIcon?: string; titleWidth?: number; errorInfoStyles?: React.CSSProperties; containerStyles?: React.CSSProperties; labelStyles?: React.CSSProperties; onTitleIconClick?: () => void; onRightIconClick?: () => void; onRightTextClick?: () => void; onBlur?: (val: any) => void; onFocus?: () => void; onChangeText?: (val: any) => void; }