import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbElement } from '../core/base-elements.ts'; /** * It displays a circle loading indicator. */ export declare class SbbLoadingIndicatorCircleElement extends SbbElement { static readonly elementName: string; static readonly role = "progressbar"; static styles: CSSResultGroup; /** Color variant. */ accessor color: 'default' | 'smoke' | 'white'; connectedCallback(): void; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-loading-indicator-circle': SbbLoadingIndicatorCircleElement; } } //# sourceMappingURL=loading-indicator-circle.component.d.ts.map