import { CustomElement } from "../../internal/custom-element.js"; import { TemplateResult } from "lit"; declare global { interface HTMLElementTagNameMap { 'odx-loading-dots': OdxLoadingDots; } } /** * @summary A loading indicator with three animated dots * * @slot - The loading text content to display. */ declare class OdxLoadingDots extends CustomElement { static tagName: string; static styles: import("lit").CSSResult[]; protected render(): TemplateResult; } export { OdxLoadingDots };