import { type TemplateResult } from 'lit'; import type { NuiType } from '../../types/nui-type.js'; import type { ProgressBarMode } from './types.js'; export interface NuiProgressBarViewState { value: number; mode: ProgressBarMode; showValue: boolean; width: string; height: string; nuiType: NuiType; progressBarClass: string; } export declare function getProgressBarClass(progressBarClass: string): string; export declare function clampProgressValue(value: number): number; export declare function getHostStyle(width: string, height: string): string | undefined; export declare function renderProgressBar(state: NuiProgressBarViewState): TemplateResult; //# sourceMappingURL=logic.d.ts.map