import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiLabelViewState } from './logic.js'; import type { LabelSize } from './types.js'; /** * @slot - Default slot content */ export declare class NuiLabel extends LitElement implements NuiLabelViewState { value: string; htmlFor: string; required: boolean; invalid: boolean; disabled: boolean; size: LabelSize | ''; unstyled: boolean; nuiType: NuiType; labelClass: string; protected createRenderRoot(): DocumentFragment | HTMLElement; protected updated(changed: PropertyValues): void; render(): import("lit-html").TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nui-label': NuiLabel; } } //# sourceMappingURL=nui-label.d.ts.map