import type { UmbEntityDataPickerPropertyEditorValue } from './types.js'; import { UmbLitElement } from '../../../core/lit-element/index.js'; import type { UmbPropertyEditorConfigCollection, UmbPropertyEditorUiElement } from '../../../core/property-editor/index.js'; declare const UmbEntityDataPickerPropertyEditorUIElement_base: import("../../../../libs/extension-api/index.js").HTMLElementConstructor> & typeof UmbLitElement; export declare class UmbEntityDataPickerPropertyEditorUIElement extends UmbEntityDataPickerPropertyEditorUIElement_base implements UmbPropertyEditorUiElement { #private; /** * The data source alias to use for this property editor. * @type {string} * @memberof UmbEntityDataPickerPropertyEditorUIElement */ private _dataSourceAlias?; get dataSourceAlias(): string | undefined; set dataSourceAlias(value: string | 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; private _min; private _minMessage; private _max; private _maxMessage; private _dataSourceConfig?; private _dataSourceApi?; private _pickerViews?; set config(config: UmbPropertyEditorConfigCollection | undefined); focus(): void | undefined; firstUpdated(changedProperties: Map): void; render(): import("lit-html").TemplateResult<1>; } export { UmbEntityDataPickerPropertyEditorUIElement as element }; declare global { interface HTMLElementTagNameMap { 'umb-entity-data-property-editor-ui': UmbEntityDataPickerPropertyEditorUIElement; } }