import ShoelaceElement from '../../internal/shoelace-element.js'; import type { CSSResultGroup } from 'lit'; /** * @summary Spinners are used to show the progress of an indeterminate operation. * @documentation https://shoelace.style/components/spinner-viur * @since 2.0 * @status stable * @viur 0.5 * * @csspart base - The component's internal wrapper. * * @cssproperty --indicator-color - The color of the indicator. * @cssproperty --speed - The time it takes for the spinner to complete one animation cycle. */ export default class SlSpinnerViur extends ShoelaceElement { static styles: CSSResultGroup; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'sl-spinner-viur': SlSpinnerViur; } }