@bee-design/ui
Version:
Bee Design React UI Library.
10 lines (9 loc) • 333 B
TypeScript
import React from 'react';
import { InputTagProps } from './interface';
declare type InputTagHandle = {
focus: () => void;
blur: () => void;
};
declare const InputTagRef: React.ForwardRefExoticComponent<InputTagProps<any> & React.RefAttributes<InputTagHandle>>;
export default InputTagRef;
export { InputTagProps };