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