import { EventEmitter, OnInit } from '@angular/core'; import { UtilsModule } from '../../utils/utils.module'; export declare class WhenComponent implements OnInit { private utilsModule; whenComponentRadioValue: string; whenComponentFirstTimeValue: Date; whenComponentCount: number; whenComponentUnit: string; whenComponentRange: string; whenComponentSecondTimeValue: Date; whenComponentData: any; unitList: { id: string; title: string; }[]; rangeList: { id: string; title: string; }[]; set ChangeData(data: any); nfDataChange: EventEmitter; closePop: EventEmitter; constructor(utilsModule: UtilsModule); ngOnInit(): void; whenComponentOnSubmit(): void; whenComponentHandleEdit(data: any): void; }