import React from 'react'; import { directionType } from '../../input/line'; import '../style/index.less'; interface baseFloatItemProps { placeholder?: string; title?: string; disabled?: boolean; tail?: React.ReactNode; special?: boolean; direction?: directionType; inputClassName?: string; defaultValue?: string | number | readonly string[] | undefined; } declare type FloatItemProps = baseFloatItemProps & React.HTMLProps; declare const FloatInputItem: React.ForwardRefExoticComponent & React.RefAttributes>; export default FloatInputItem;