export declare class SallaLoading {
    /**
     * Sets the diameter of the circle in pixels, Defaults to `32`
     */
    size: number | string;
    /**
     * Sets the stroke of the circle (border) in pixels, Defaults to `4`
     */
    width: number | string;
    /**
     * Spinner content color.
     */
    color: string;
    /**
    * Spinner background color.
    */
    bgColor: string;
    render(): any;
}
