import React from 'react'; interface InputBoxProps { [string: string]: any; } export interface InputPasswordProps extends InputBoxProps { /** * 初始化显隐 */ visible?: boolean; /** * 是否显示密码可见按钮 true */ showVisible?: boolean; } declare const InputPassword: React.FC; export default InputPassword;