import { GUI } from '../../core'; import { Group } from '../../shapes'; import type { TagOptions, TagStyleProps } from './types'; export type { TagStyleProps, TagOptions }; /** * 带文本、图标的 Tag 组件,支持 iconfont 组件 * * 组成元素:Marker + Text + BackgroundRect */ export declare class Tag extends GUI { /** * 标签类型 */ static tag: string; constructor(options: TagOptions); render(attributes: Required, container: Group): void; }