import { OnDestroy, OnInit } from '@angular/core';
import { LoadingService } from '../../services/loading.service';
import { LoadingDensity } from '../../enums/loading-density.enum';
import * as i0 from "@angular/core";
export declare class LoadingComponent implements OnInit, OnDestroy {
    private loadingService;
    density: LoadingDensity;
    progress?: number;
    minValue: number;
    maxValue: number;
    isFullScreen: boolean;
    private loadingSubscription;
    constructor(loadingService: LoadingService);
    ngOnInit(): void;
    ngOnDestroy(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "cfc-loading", never, { "density": { "alias": "density"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; }, {}, never, never, false, never>;
}
