import { OnInit } from '@angular/core'; import { countDownTimerConfigModel, countDownTimerTexts } from './countdown-timer.model'; import { CountdownTimerService } from './countdown-timer.service'; export declare class CountdownTimerComponent implements OnInit { private countdownTimerService; startTime: String; countDownTimerConfig: countDownTimerConfigModel; private timerSubscription; timerObj: any; timerConfig: countDownTimerConfigModel; timerTextConfig: countDownTimerTexts; constructor(countdownTimerService: CountdownTimerService); ngOnInit(): void; getTimerValue: () => void; ngOnDestroy(): void; }