import '../nui-icon/nui-icon.js'; import { type TemplateResult } from 'lit'; import type { NuiType } from '../../types/nui-type.js'; import type { MeterItem } from './types.js'; export interface NuiMeterGroupViewState { value: MeterItem[]; min: number; max: number; orientation: 'horizontal' | 'vertical'; labelPosition: 'start' | 'end' | 'none'; labelOrientation: 'horizontal' | 'vertical'; unstyled: boolean; nuiType: NuiType; meterGroupClass: string; } export declare function renderMeterGroup(state: NuiMeterGroupViewState): TemplateResult; //# sourceMappingURL=logic.d.ts.map