import { OnInit, EventEmitter } from '@angular/core'; import { FormManagerConfig } from '../form-manager.config'; import { FormManagerService } from '../form-manager.service'; import { ActivatedRoute, Router } from '@angular/router'; import { FormioAuthService } from '../../auth/auth.service'; export declare class FormManagerViewComponent implements OnInit { service: FormManagerService; router: Router; route: ActivatedRoute; config: FormManagerConfig; auth: FormioAuthService; draft: any; submission: any; savingDraft: any; triggerSaveDraft: any; currentForm: any; onSuccess: EventEmitter; onError: EventEmitter; constructor(service: FormManagerService, router: Router, route: ActivatedRoute, config: FormManagerConfig, auth: FormioAuthService); ngOnInit(): void; saveDraft(): void; onChange(data: any): void; onSubmit(submission: any): void; }