import React from 'react'; import type { IconCfg } from '../Icon/PropsType'; export interface MyInputProps { value?: any; icon?: IconCfg; prefixIcon?: any; visible?: any; onChange?: any; onValueRelease?: any; getCompPropMapState?: any; compId?: any; name?: any; fieldName?: any; required?: any; readOnly?: boolean; regexp?: any; message?: any; label?: any; labelCol?: any; wrapperCol?: any; selfSpan?: any; hidden?: any; colSpan?: any; onIconClick?: any; defaultValue?: any; validateStatus?: any; help?: any; postfix?: any; compType?: any; prefixStyle?: any; prefixWord?: any; prefixIconPosition?: any; postfixIconPosition?: any; postfixStyle?: any; onSelectedRowsRelease?: any; onSelectedRowKeysRelease?: any; onSelectedKeysRelease?: any; onEditingKeyRelease?: any; onInlineEditRelease?: any; onInlineSaveRelease?: any; onSelectedDataRelease?: any; pageState?: any; pagePublicState?: any; className?: any; style?: React.CSSProperties; disabled?: boolean; showWrapperContainer: boolean; wrapperContainer: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; minLength?: any; maxLength?: any; rules?: any[]; colon?: boolean; isFormChild?: boolean | undefined; dataMask?: string | Function; dataMaskUtil?: any; type?: string; tipSize?: string; tipWidth?: string; tipHeight?: string; getEngineApis?: any; trigger?: string; } export interface WrapperInputProps { children: React.ReactElement; } declare const INPUT_WRAPPER_CLASSNAME = "ued-input-wrap"; declare const WrapperInput: React.FC; declare const Input: React.ForwardRefExoticComponent>; export default Input; export { WrapperInput, INPUT_WRAPPER_CLASSNAME };