import React, { forwardRef } from 'react'; import BaseInput from './BaseInput'; import type { InputProps, InputInstance } from './type'; const Input = forwardRef((props, ref) => ( )); export default Input;