import { LitElement } from 'lit'; /** * @cssproperty --stroke-color - Set the color of the loader. * @cssproperty --track-width - Set the thickness of the track. * * @ssr - True */ export default class ArcSpinner extends LitElement { /** @internal */ static tag: string; static styles: import("lit").CSSResult[]; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'arc-spinner': ArcSpinner; } }