import { ElementRef, EventEmitter, OnInit } from '@angular/core'; export declare class CounterComponent implements OnInit { private hostElement; mode: string; from: number; to: number; of: number; animationTime: number; animationType: string; showCircle: boolean; circleColor: string; fontSize: number; delay: number; finishedText: string; finished: EventEmitter<{}>; private _hold; private _count; private _startTime; private _percentDone; private _holdProgress; private _nativeElement; private _startTimeout; private _finishedCounting; onWindowChange($event: any): void; constructor(hostElement: ElementRef); startTimeout: any; nativeElement: HTMLElement; holdProgress: number; percentDone: number; count: number; startTime: number; hold: boolean; finishedCounting: boolean; ngOnInit(): void; start(): void; stop(): void; restart(): void; init(): void; getCircleStyle(): any; getBarStyle(): any; getFillStyle(): any; private startAction(); private step(timestamp); private requestFrame(); private isElementInViewport(); }