tdesign-react
Version:
TDesign Component for React
10 lines (9 loc) • 384 B
TypeScript
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;