import { EventEmitter, OnInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { ButtonComponentConfig } from '../button/button.model'; import { FormComponentConfig, FormComponentServices } from './form.model'; import { FormService } from '../../services/form.service'; import * as i0 from "@angular/core"; export declare class FormComponent implements OnInit { private formService; config: FormComponentConfig; services: FormComponentServices; linear: boolean; onAction: EventEmitter; onDeeplink: EventEmitter; onRefresh: EventEmitter; onFormCreation: EventEmitter; reactiveForm: FormGroup; constructor(formService: FormService); ngOnInit(): void; handleAction(item: ButtonComponentConfig, values: any): void; updateSchedule(scheduleItem: any, schedule: any): void; updateTimePicker(timePickerItem: any, period: any): void; updateTreeSelector(treeSelectorItem: any, values: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }