import { OnInit } from '@angular/core';
import { Context, Size } from '../enums';
export declare class LoadersComponent implements OnInit {
    size: Size;
    context: Context;
    /** Enums to be used in the template **/
    contextEnum: typeof Context;
    sizeEnum: typeof Size;
    constructor();
    ngOnInit(): void;
}
