import { OnInit, OnDestroy } from '@angular/core'; import { CountupTimerService } from './countup-timer.service'; import { countUpTimerConfigModel, timerTexts } from './countup-timer.model'; export declare class CountupTimerComponent implements OnInit, OnDestroy { private countupTimerService; startTime: String; countUpTimerConfig: countUpTimerConfigModel; timerObj: any; private timerSubscription; timerConfig: countUpTimerConfigModel; timerTextConfig: timerTexts; constructor(countupTimerService: CountupTimerService); ngOnInit(): void; getTimerValue: () => void; ngOnDestroy(): void; }