import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiMeterGroupViewState } from './logic.js'; import type { MeterItem } from './types.js'; export declare class NuiMeterGroup extends LitElement implements NuiMeterGroupViewState { value: MeterItem[]; min: number; max: number; orientation: 'horizontal' | 'vertical'; labelPosition: 'start' | 'end' | 'none'; labelOrientation: 'horizontal' | 'vertical'; unstyled: boolean; nuiType: NuiType; meterGroupClass: string; protected createRenderRoot(): DocumentFragment | HTMLElement; protected updated(changed: PropertyValues): void; render(): import("lit-html").TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nui-meter-group': NuiMeterGroup; } } //# sourceMappingURL=nui-meter-group.d.ts.map