import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
export declare class SpinnerCircleSolidComponent implements OnInit, OnChanges {
    color: string;
    size: string;
    overlay: boolean;
    overlayColor: string;
    standardSizes: {
        'xs': string;
        'sm': string;
        'md': string;
        'lg': string;
        'xl': string;
    };
    spinnerStyle: any;
    overlayStyle: any;
    constructor();
    ngOnInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
    setStyle(): void;
}
