import type { CSSResultGroup, PropertyDeclaration } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary Progress rings are used to show the progress of a determinate operation in a circular fashion. * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/indicateurs-de-progression-progress-indicators/roue-de-progression-progress-ring/web-wyY0Fgvv */ export default class DSAProgressRing extends ShoelaceElement { static styles: CSSResultGroup; indicator: SVGCircleElement; indicatorOffset: string; private indicatorCircumference?; /** The current progress as a percentage, 0 to 100. */ value: number; /** A custom label for assistive devices. */ label: string; /** The progress-ring's size. */ size: 'small' | 'medium'; requestUpdate(name?: PropertyKey, oldValue?: unknown, options?: PropertyDeclaration): void; private getIndicatorCircumference; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-progress-ring': DSAProgressRing; } }