/** * A simple customizable loading component. */ export declare class LoadingComponent { /** * The message to be displayed below spinner. */ message: string; /** * Stop the loading if false, removing it from DOM. */ stopLoading: boolean; /** * The spinner thickness in pixels. * * @default 8 */ thickness: number; /** * The size in pixels of the spinner. * * @default 30 */ size: number; /** * The container width in pixel * * @default 120 */ width: number; /** * Empty constructor. */ constructor(); }