import { ComponentType, FC, HTMLAttributes } from 'react'; interface Props { el?: ComponentType>; value?: string; } declare const Item: FC; export default Item;