UNPKG

tdesign-react

Version:
10 lines (9 loc) 384 B
import React from 'react'; import { type InputRef } from '../input'; import type { TdTagInputProps } from './type'; import type { StyledProps } from '../common'; export interface TagInputProps extends TdTagInputProps, StyledProps { options?: any[]; } declare const TagInput: React.ForwardRefExoticComponent<TagInputProps & React.RefAttributes<InputRef>>; export default TagInput;