/// import type { ISelectItem, ISelectCommonProps } from './Select'; export interface ISelectTagListProps = ISelectItem> { list: Item[]; onRemove(item: Item): void; renderValue?: ISelectCommonProps['renderValue']; } declare function SelectTagList = ISelectItem>({ list, onRemove, renderValue }: ISelectTagListProps): JSX.Element; declare const _default: import("react").MemoExoticComponent; export default _default;