import { LitElement } from 'lit'; /** * Material Design 3 Loading Indicator * * Expressive loading indicator with shape morphing capabilities. */ export declare class M3LoadingIndicator extends LitElement { static styles: import("lit").CSSResult; /** * Indicator variant */ variant: 'standard' | 'contained'; /** * Indicator shape */ shape: 'circle' | 'square'; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'm3-loading-indicator': M3LoadingIndicator; } }