import { OnInit, EventEmitter } from '@angular/core'; import { IAllergyIntolerance, IPatient } from '@ahryman40k/ts-fhir-types/lib/R4'; import { FormGroup } from '@angular/forms'; export declare class AllergyAddComponent implements OnInit { inData: IAllergyIntolerance[]; patient: IPatient; callSave: EventEmitter; callDelete: EventEmitter; form: FormGroup; constructor(); ngOnInit(): void; reset(): void; resetForm(): FormGroup; save(inData: IAllergyIntolerance): void; delete(id: string): void; }