import { ZTag_Props } from '@zurich/dev-utils/code/Tag'; import { ZDSElement } from './base'; /** ## `` * * Component docs. */ export declare class ZTag extends ZDSElement implements ZTag_Props { readonly _name = "tag"; content?: ZTag_Props['content']; fill?: ZTag_Props['fill']; icon?: ZTag_Props['icon']; 'icon-right'?: ZTag_Props['icon-right']; render(): import('lit-html').TemplateResult<1>; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-tag': ZTag; } }