import { HomeAssistant } from '@types'; import { LitElement } from 'lit'; declare class EmcEntityMarker extends LitElement { hass: HomeAssistant; entityId?: string; entityName?: string; entityUnit?: string; entityPicture?: string; entityColor?: string; showIcon: boolean; useMoreInfo: boolean; entityIcon?: string; protected render(): import("lit-html").TemplateResult<1>; private _badgeTap; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'emc-entity-marker': EmcEntityMarker; } } export {};