import { Component } from 'react'; import { FSTagGroupProps } from '../interface'; import './index.less'; declare class Group extends Component { static defaultProps: { defaultValue: never[]; hasAdd: boolean; onAdd: () => void; closeCallback: () => void; }; private inputRef; constructor(props: any); handleInputConfirm: (e: any) => void; showInput: () => void; render(): JSX.Element; } export default Group;