import React from "react"; interface ITag { type?: number | string; onlyShowSystemTag?: boolean; maxCount?: number; isSquad?: boolean; isExternal?: boolean; tagImgName?: string; tagImgEnName?: string; wrapStyle?: any; customStyle?: any; groupTags?: { icon_zh: string; icon_en: string; }[]; } declare const PoolTag: (props: ITag) => React.JSX.Element | null; export default PoolTag;