import type { CSSResultGroup } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary Progress bars are used to show the status of an ongoing operation. * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/indicateurs-de-progression-progress-indicators/barre-de-progression-progress-bar/web-VOiu5jTT */ export default class DSAProgressBar extends ShoelaceElement { static styles: CSSResultGroup; private readonly localize; /** The current progress as a percentage, 0 to 100. */ value: number; /** When true, percentage is ignored, the value is hidden, and the progress bar is drawn in an indeterminate state. */ indeterminate: boolean; /** A custom label for assistive devices. */ label: string; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-progress-bar': DSAProgressBar; } }