import { LitElement } from 'lit'; import { ElementPin } from './pin'; export declare class PushbuttonElement extends LitElement { color: string; pressed: boolean; label: string; simulation_height: number; simulation_width: number; readonly pinInfo: ElementPin[]; static get styles(): import("lit").CSSResult; render(): import("lit-html").TemplateResult<1>; private down; private up; }