Files
video-gen/video-gen-admin/node_modules/@rc-component/input/lib/BaseInput.d.ts
T
2026-05-25 17:08:18 +08:00

9 lines
353 B
TypeScript

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;