import { UmbLitElement } from '../../../../core/lit-element/index.js'; import type { UmbPropertyEditorConfigCollection, UmbPropertyEditorUiElement } from '../../../../core/property-editor/index.js'; interface UmbCollectionLayoutConfiguration { icon?: string; name?: string; collectionView?: string; isSystem?: boolean; selected?: boolean; } /** * @element umb-property-editor-ui-collection-layout-configuration */ export declare class UmbPropertyEditorUICollectionLayoutConfigurationElement extends UmbLitElement implements UmbPropertyEditorUiElement { #private; set value(value: Array | undefined); get value(): Array; config?: UmbPropertyEditorConfigCollection; render(): import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult[]; } export default UmbPropertyEditorUICollectionLayoutConfigurationElement; declare global { interface HTMLElementTagNameMap { 'umb-property-editor-ui-collection-layout-configuration': UmbPropertyEditorUICollectionLayoutConfigurationElement; } }