import { SkfElement } from '@internal/components/skf-element.js'; import { type CSSResultGroup } from 'lit'; /** * The `` component is a progress indicator that uses circular indicators for short, indeterminate activities. * * @documentation See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/619e4125b3d2147c0c584b11) for design principles. * * @tagname skf-loader */ export declare class SkfLoader extends SkfElement { static styles: CSSResultGroup; ariaLabel: string; /** If true, inverts the color (to be used on colored backgrounds) */ invert: boolean; /** If provided, displays an alternative size */ size?: 'md' | 'sm'; connectedCallback(): void; /** @internal */ private getCircle; render(): import("lit").TemplateResult<1>; }