import { LitElement } from 'lit'; import { ElementPin } from './pin'; export declare class LEDElement extends LitElement { value: boolean; brightness: number; color: string; lightColor: string | null; label: string; flip: boolean; simulation_height: number; simulation_width: number; get pinInfo(): ElementPin[]; static get styles(): import("lit").CSSResult; render(): import("lit-html").TemplateResult<1>; }