import { SimpleChanges, TemplateRef, OnInit, OnChanges } from '@angular/core';
export declare class ProgressComponent implements OnInit, OnChanges {
    percentage: number;
    percentageText: string;
    barbgcolor: string;
    height: string;
    strokeWidth: number;
    isCircle: boolean;
    customViewTemplate: TemplateRef<any>;
    trailPath: {
        [key: string]: string;
    };
    strokePath: {
        [key: string]: string;
    };
    pathString: string;
    constructor();
    ngOnInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
    setCircleProgress(): void;
}
