import { UmbLitElement } from '../../core/lit-element/index.js'; import type { UmbPropertyEditorConfigCollection, UmbPropertyEditorUiElement } from '../../core/property-editor/index.js'; declare const UmbPropertyEditorUIMultipleTextStringElement_base: import("../../../libs/extension-api/index.js").HTMLElementConstructor> & typeof UmbLitElement; /** * @element umb-property-editor-ui-multiple-text-string */ export declare class UmbPropertyEditorUIMultipleTextStringElement extends UmbPropertyEditorUIMultipleTextStringElement_base implements UmbPropertyEditorUiElement { #private; set config(config: UmbPropertyEditorConfigCollection | undefined); /** * Disables the Multiple Text String Property Editor UI * @type {boolean} * @attr * @default false */ disabled: boolean; /** * Makes the Multiple Text String Property Editor UI readonly * @type {boolean} * @attr * @default false */ readonly: boolean; /** * Makes the Multiple Text String Property Editor UI mandatory * @type {boolean} * @attr * @default false */ required: boolean; private _label?; private _min; private _max; constructor(); protected firstUpdated(): void; render(): import("lit-html").TemplateResult<1>; } export default UmbPropertyEditorUIMultipleTextStringElement; declare global { interface HTMLElementTagNameMap { 'umb-property-editor-ui-multiple-text-string': UmbPropertyEditorUIMultipleTextStringElement; } }