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