import { OnInit, ElementRef, Renderer2 } from '@angular/core'; export declare class ProgressCircleComponent implements OnInit { protected renderer: Renderer2; protected progressCircle: any; protected pCircumference: number; /** * Percentage of the circle to occupy */ Percentage: number; /** * The color of the filled portion of the circle */ PercentageColor: string; /** * The color of the outline circle for the filled portion to trace */ CircleBackgroundColor: string; /** * height of the svg */ Height: any; /** * width of the svg */ Width: any; /** * the width of the stroke around the circle */ StrokeWidth: any; set content(elRef: ElementRef); constructor(renderer: Renderer2); ngOnInit(): void; ngAfterViewInit(): void; /** * Initializes the SVG progress circle to get and set the necessary values for displaying a rating. */ initProgressCircle(): void; /** * Triggers an CSS animation to offset the progress circle based on the value given. * * @param percent The percent of total ratings for a given location. */ initRatingInfo(percent: number): void; /** * Sets the default colors and styles for the circle */ protected SetDefaultTheme(): void; }