import { CustomElement } from "../../internal/custom-element.js"; type ProgressVariant = (typeof ProgressVariant)[keyof typeof ProgressVariant]; declare const ProgressVariant: { readonly NEUTRAL: "neutral"; readonly ACCENT: "accent"; readonly DANGER: "danger"; readonly SUCCESS: "success"; readonly CONFIRMATION: "confirmation"; }; declare class ProgressBarBase extends CustomElement { label?: string | null; min: number; max: number; value: number; valueText?: string | null; hideValue: boolean; indeterminate: boolean; variant: ProgressVariant; get valuePercentage(): number; protected get valueHidden(): boolean; } export { ProgressBarBase, ProgressVariant };