import type { VNode } from 'vue'; export interface TagProps { attribute?: any; children?: string; textStyle?: any; panelStyle?: any; padding?: any; minWidth?: number; maxWidth?: number; visible?: boolean; } declare function Tag(props: TagProps): VNode; declare namespace Tag { var symbol: string; } export default Tag;