import { OnInit, OnChanges, EventEmitter } from '@angular/core'; import { FormBuilder, FormGroup } from '@angular/forms'; export declare class OfferScheduleComponent implements OnInit, OnChanges { fb: FormBuilder; /** * @description * Hours Range */ hoursRange: any; /** * @description * Minutes Range */ mintsRange: any; /** * @description * Seconds Range */ secondsRange: any; /** * @description * Validator Form */ parent: FormGroup; /** * @description * For sending the value change event to parent */ offerScheduleValueChanged: EventEmitter; valueChanged(event?: any): void; /** * @param FormBuilder * @param offerService * @description * Contructor to inilazie the values */ constructor(fb: FormBuilder); /** * @description * NG Init */ ngOnInit(): void; ngOnChanges(): void; /** * @description * Set the form fields */ setForm(): void; /** * @description * Method to Added/Edited offers in backend API */ minEndTimeValidation(): any; }