Input.d.ts 204 B

1234
  1. import React from 'react';
  2. import type { InputProps, InputRef } from './interface';
  3. declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<InputRef>>;
  4. export default Input;