/** * Copyright (c) Cisco Systems, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import { LitElement, PropertyValues } from "lit"; export declare namespace Spinner { class ELEMENT extends LitElement { size: number; private isAnimating; private animationFrameId; static get styles(): import("lit").CSSResult[]; get spinnerStyleMap(): { width: string; height: string; }; protected firstUpdated(_changedProperties: PropertyValues): void; disconnectedCallback(): void; private startAnimation; private stopAnimation; render(): import("lit-html").TemplateResult<1>; } } declare global { interface HTMLElementTagNameMap { "md-spinner": Spinner.ELEMENT; } }