import type { UmbCollectionItemModel } from '../types.js'; import type { UmbEntityCollectionItemElement } from '../entity-collection-item-element.interface.js'; import { nothing } from '../../../../../external/lit/index.js'; import { UmbLitElement } from '../../../lit-element/index.js'; import type { UmbWithOptionalDescriptionModel } from '../../../models/index.js'; type UmbDefaultCollectionItemRefItemModel = UmbCollectionItemModel & UmbWithOptionalDescriptionModel; export declare class UmbDefaultCollectionItemRefElement extends UmbLitElement implements UmbEntityCollectionItemElement { #private; item?: UmbDefaultCollectionItemRefItemModel; selectable: boolean; selected: boolean; selectOnly: boolean; disabled: boolean; href?: string; render(): typeof nothing | import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'umb-default-collection-item-ref': UmbDefaultCollectionItemRefElement; } } export {};