import React from 'react'; export interface PassWordProps { value?: any; visible?: any; onChange?: any; onValueRelease?: any; defaultValue?: any; getCompPropMapState?: any; compId?: any; name?: any; fieldName?: any; required?: any; hidden?: any; regexp?: any; message?: any; label?: any; labelCol?: any; wrapperCol?: any; selfSpan?: any; colSpan?: any; style?: React.CSSProperties; showWrapperContainer: boolean; wrapperContainer: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; colon?: boolean; isFormChild?: boolean | undefined; readOnly: boolean; rules?: any[]; tipSize?: string; tipWidth?: string; tipHeight?: string; } export interface WrapperInputPasswordProps { children: React.ReactElement; } declare const INPUTPASSWORD_WRAPPER_CLASSNAME = "ued-inputPassword-wrap"; declare const WrapperInputPassword: React.FC; declare const Password: React.FC; export default Password; export { INPUTPASSWORD_WRAPPER_CLASSNAME, WrapperInputPassword };