import React, { ReactNode } from 'react'; import { BasicInputProps } from './props'; export declare type InputEleType = HTMLInputElement | HTMLTextAreaElement; export declare function useInputLogic(props: BasicInputProps, inputRef: React.MutableRefObject): { inputValue: string; handleChange: (e: React.ChangeEvent) => void; handleInput: (e: any) => void; handleKeyDown: (e: React.KeyboardEvent) => void; handleFocus: (e: React.FocusEvent) => void; handleBlur: (e: React.FocusEvent) => void; handleClick: (e: React.MouseEvent) => void; renderWrapper: (prefixCls: string, type: string, children: ReactNode) => JSX.Element; wrapRef: React.MutableRefObject; };