BaseInput.d.ts 353 B

12345678
  1. import React from 'react';
  2. import type { BaseInputProps } from './interface';
  3. export interface HolderRef {
  4. /** Provider holder ref. Will return `null` if not wrap anything */
  5. nativeElement: HTMLElement | null;
  6. }
  7. declare const BaseInput: React.ForwardRefExoticComponent<BaseInputProps & React.RefAttributes<HolderRef>>;
  8. export default BaseInput;