import LibraryBaseElement from '../../internal/library-base-element.js'; import type { CSSResultGroup } from 'lit'; /** * @summary Spinners are used to show the progress of an indeterminate operation. * @documentation /components/spinner * @status stable * @since 1.5 * * @csspart base - The component's base wrapper. * * @cssproperty --track-width - The width of the track. * @cssproperty --track-color - The color of the track. * @cssproperty --indicator-color - The color of the spinner's indicator. * @cssproperty --speed - The time it takes for the spinner to complete one animation cycle. */ export default class OSpinner extends LibraryBaseElement { static styles: CSSResultGroup; private readonly localize; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'o-spinner': OSpinner; } }