export declare class SpwLoading { /** Permet de spécifier un texte de chargement */ text?: string; /** Surface du composant (light ou dark) */ surface: 'light' | 'dark'; /** Taille du composant */ size: 'small' | 'medium' | 'large' | 'extra-large'; /** Orientation du composant (horizontal ou vertical) */ orientation: 'horizontal' | 'vertical'; private get loadingClasses(); render(): any; }