import React from 'react'; import { directionType } from '../line/index'; import '../style/index.less'; interface baseCustomInputProps { customOnChange?: any; special?: boolean; direction?: directionType; inputClassName?: string; } declare type CustomInputProps = baseCustomInputProps & React.HTMLProps; declare const Input: React.ForwardRefExoticComponent & React.RefAttributes>; export default Input;