minishouyin/node_modules/rc-input/es/BaseInput.d.ts

9 lines
353 B
TypeScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
import React from 'react';
import type { BaseInputProps } from './interface';
export interface HolderRef {
/** Provider holder ref. Will return `null` if not wrap anything */
nativeElement: HTMLElement | null;
}
declare const BaseInput: React.ForwardRefExoticComponent<BaseInputProps & React.RefAttributes<HolderRef>>;
export default BaseInput;