import { CSSResultGroup, TemplateResult, LitElement } from 'lit'; /** * It displays a loading indicator. */ export declare class SbbLoadingIndicatorElement extends LitElement { static styles: CSSResultGroup; /** Variant of the loading indicator; `circle` is meant to be used inline, while `window` as overlay. */ variant?: 'window' | 'circle'; /** Size variant, either s or m. */ size: 's' | 'l'; /** Color variant. */ color: 'default' | 'smoke' | 'white'; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-loading-indicator': SbbLoadingIndicatorElement; } } //# sourceMappingURL=loading-indicator.d.ts.map