import { UmbLitElement } from '../../core/lit-element/index.js'; import type { UmbPropertyEditorUiElement, UmbPropertyEditorConfigCollection } from '../../core/property-editor/index.js'; /** * @element umb-property-editor-ui-label */ export declare class UmbPropertyEditorUILabelElement extends UmbLitElement implements UmbPropertyEditorUiElement { private _labelTemplate?; value: string; set config(config: UmbPropertyEditorConfigCollection | undefined); render(): import("lit-html").TemplateResult<1>; } export default UmbPropertyEditorUILabelElement; declare global { interface HTMLElementTagNameMap { 'umb-property-editor-ui-label': UmbPropertyEditorUILabelElement; } }