import { type TemplateResult } from "lit"; import { WidgetSettings } from "../util/widget-settings"; import type { GaugeWidgetConfig } from "../widgets/gauge-widget"; import type { AttributesSelectEvent } from "../panels/attributes-panel"; import type { ThresholdChangeEvent } from "../panels/thresholds-panel"; export declare class GaugeSettings extends WidgetSettings { protected widgetConfig: GaugeWidgetConfig; protected render(): TemplateResult; protected onAttributesSelect(ev: AttributesSelectEvent): void; protected onMinMaxValueChange(type: "min" | "max", ev: Event): void; protected onDecimalsChange(ev: Event): void; protected onThresholdChange(ev: ThresholdChangeEvent): void; } //# sourceMappingURL=gauge-settings.d.ts.map