import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiTagViewState } from './logic.js'; import type { TagSeverity } from './types.js'; /** * @slot - Default slot content */ export declare class NuiTag extends LitElement implements NuiTagViewState { value: string; severity: TagSeverity | ''; rounded: boolean; icon: string; unstyled: boolean; nuiType: NuiType; tagClass: string; get lightDomHasContent(): boolean; protected createRenderRoot(): DocumentFragment | HTMLElement; protected updated(changed: PropertyValues): void; render(): import("lit-html").TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nui-tag': NuiTag; } } //# sourceMappingURL=nui-tag.d.ts.map