import { UmbLitElement } from '../../lit-element/index.js'; declare const UmbInputPropertyEditorDataSourceElement_base: (new (...args: any[]) => import("@umbraco-ui/uui-base").UUIFormControlMixinElement) & typeof UmbLitElement; export declare class UmbInputPropertyEditorDataSourceElement extends UmbInputPropertyEditorDataSourceElement_base { #private; /** * This is a minimum amount of selected items in this input. * @type {number} * @attr * @default */ set min(value: number); get min(): number; /** * Min validation message. * @type {boolean} * @attr * @default */ minMessage: string; /** * This is a maximum amount of selected items in this input. * @type {number} * @attr * @default */ set max(value: number); get max(): number; /** * Max validation message. * @type {boolean} * @attr * @default */ maxMessage: string; set selection(uniques: Array); get selection(): Array; set value(uniques: string); get value(): string; /** * Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content. * @type {boolean} * @attr * @default */ get readonly(): boolean; set readonly(value: boolean); set dataSourceTypes(value: Array); get dataSourceTypes(): Array; private _items; private _statuses?; constructor(); protected getFormElement(): undefined; render(): import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { 'umb-input-property-editor-data-source': UmbInputPropertyEditorDataSourceElement; } } export {};