import { OnInit } from '@angular/core'; import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { UntypedFormBuilder, UntypedFormGroup } from "@angular/forms"; import { BaseUserService } from '../../services/user.service'; import { SupportService } from '../../services/support.service'; import { ValidatorsService } from '../../services/validators.service'; import * as i0 from "@angular/core"; export declare class SupportModalComponent implements OnInit { private supportService; activeModal: NgbActiveModal; private formBuilder; private userService; validatorsService: ValidatorsService; status: string; supportForm: UntypedFormGroup; currentUser: any; loading: boolean; constructor(supportService: SupportService, activeModal: NgbActiveModal, formBuilder: UntypedFormBuilder, userService: BaseUserService, validatorsService: ValidatorsService); ngOnInit(): void; onClose(): void; getCurrentUser(): Promise; iniForm(): Promise; onSubmit(): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }