import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiHeadingViewState } from './logic.js'; /** * @slot - Default slot content */ export declare class NuiHeading extends LitElement implements NuiHeadingViewState { tag: number; text: string; unstyled: boolean; nuiType: NuiType; headingClass: string; protected createRenderRoot(): DocumentFragment | HTMLElement; protected updated(changed: PropertyValues): void; render(): import("lit-html").TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nui-heading': NuiHeading; } } //# sourceMappingURL=nui-heading.d.ts.map