import { OnInit, SimpleChanges, OnChanges } from '@angular/core'; import { ColorsService } from '../colors.service'; export declare class ProgressCircleComponent implements OnInit, OnChanges { private colors; circle: any; bg: any; text: any; color: string; progress: number; label: string; style: any; constructor(colors: ColorsService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; }