import { PharosElement } from '../base/pharos-element'; import type { TemplateResult, CSSResultArray } from 'lit'; /** * Pharos loading spinner component. * * @tag pharos-loading-spinner * * @cssprop {Color} --pharos-loading-spinner-color-stroke-primary - The primary color of the spinner icon. * @cssprop {Color} --pharos-loading-spinner-color-stroke-secondary - The secondary color of the spinner icon. */ export declare class PharosLoadingSpinner extends PharosElement { /** * Indicates if the spinner is on background * @attr is-on-background */ isOnBackground: boolean; /** * Indicates if the spinner is small * @attr small */ small: boolean; private _icon; private _spinner; static get styles(): CSSResultArray; protected firstUpdated(): void; private _setupAnimation; private _renderSVG; protected render(): TemplateResult; } //# sourceMappingURL=pharos-loading-spinner.d.ts.map