import React from 'react'; import { directionType } from '../../input/line/index'; import '../style/index.less'; interface baseItemInputProps { placeholder?: string; disabled?: boolean; head?: any; tail?: any; direction?: directionType; inputClassName?: string; } declare type ItemInputProps = baseItemInputProps & React.HTMLProps; declare const LineInputItem: React.ForwardRefExoticComponent & React.RefAttributes>; export default LineInputItem;