import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiProgressBarViewState } from './logic.js'; import type { ProgressBarMode } from './types.js'; /** * @slot - Default slot content */ export declare class NuiProgressBar extends LitElement implements NuiProgressBarViewState { value: number; mode: ProgressBarMode; showValue: boolean; width: string; height: string; unstyled: boolean; nuiType: NuiType; progressBarClass: string; protected createRenderRoot(): DocumentFragment | HTMLElement; protected firstUpdated(): void; protected updated(changed: PropertyValues): void; private syncHostSize; render(): import("lit-html").TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nui-progress-bar': NuiProgressBar; } } //# sourceMappingURL=nui-progress-bar.d.ts.map