import type { UmbLinkPickerLink } from '../link-picker-modal/types.js'; import { UmbLitElement } from '../../core/lit-element/index.js'; import type { UmbPropertyEditorConfigCollection, UmbPropertyEditorUiElement } from '../../core/property-editor/index.js'; import '../components/input-multi-url/index.js'; declare const UmbPropertyEditorUIMultiUrlPickerElement_base: import("../../../libs/extension-api/index.js").HTMLElementConstructor> & typeof UmbLitElement; /** * @element umb-property-editor-ui-multi-url-picker */ export declare class UmbPropertyEditorUIMultiUrlPickerElement extends UmbPropertyEditorUIMultiUrlPickerElement_base implements UmbPropertyEditorUiElement { #private; set config(config: UmbPropertyEditorConfigCollection | undefined); /** * Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content. * @type {boolean} * @attr * @default false */ readonly: boolean; mandatory: boolean; mandatoryMessage: string; private _overlaySize?; private _hideAnchor?; private _documentLinksConfig?; private _min; private _max; private _label?; private _alias?; private _variantId?; constructor(); protected firstUpdated(): void; render(): import("lit-html").TemplateResult<1>; } export default UmbPropertyEditorUIMultiUrlPickerElement; declare global { interface HTMLElementTagNameMap { 'umb-property-editor-ui-multi-url-picker': UmbPropertyEditorUIMultiUrlPickerElement; } }