import { BaseWidget } from "./abstractWidgetBase"; export declare abstract class SwitchBase extends BaseWidget { readonly widgetType = "switcher"; /** Widget background css color */ abstract readonly backgroundCSS: string | null; /** Get current state */ abstract getState(): Promise; /** Change the state, returns the one that turned out after the switch */ abstract switchIt(): Promise; }