import { nothing } from '../../../../external/lit/index.js'; import { UmbLitElement } from '../../lit-element/index.js'; export declare class UmbEntityActionsBundleElement extends UmbLitElement { #private; /** * @deprecated Provide through the UMB_ENTITY_CONTEXT context instead. Will be removed in Umbraco 19. * @returns {string | undefined} The entity type. */ get entityType(): string | undefined; set entityType(value: string | undefined); /** * @deprecated Provide through the UMB_ENTITY_CONTEXT context instead. Will be removed in Umbraco 19. * @returns {string | null | undefined} The unique key. */ get unique(): string | null | undefined; set unique(value: string | null | undefined); label?: string; private _numberOfActions; private _firstActionManifest?; private _firstActionApi?; private _firstActionHref?; constructor(); render(): typeof nothing | import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { 'umb-entity-actions-bundle': UmbEntityActionsBundleElement; } }