import { EventEmitter } from "@angular/core"; import { FormBuilder } from "@angular/forms"; import { UserSandbox } from "../../../shared/sandbox/providers/user.sandbox"; import { SearchCountryField, TooltipLabel, CountryISO, PhoneNumberFormat } from "ngx-intl-tel-input"; import { GlobalSandbox } from "../../../shared/sandbox/providers/global.sandbox"; import { Observable } from "rxjs"; import { BioSealStateModel } from "../../../shared/model/bioseal.model"; export declare class VaccinationUserFormComponent { userSandbox: UserSandbox; private formBuilder; globalSandbox: GlobalSandbox; PersonalForm: any; DocumentForm: any; PractitionerForm: any; VaccinationForm: any; defaultDate: any; separateDialCode: boolean; practitionersToShow: { firstName: string; lastName: string; email: string; tel: string; }[]; selectedPractitioner: any; selectedHospital: string; SearchCountryField: typeof SearchCountryField; TooltipLabel: typeof TooltipLabel; CountryISO: typeof CountryISO; PhoneNumberFormat: typeof PhoneNumberFormat; preferredCountries: CountryISO[]; personalData: Observable; documentData: Observable; practitionerData: Observable; personalSubmitted: Observable; documentSubmitted: Observable; practitionerSubmitted: Observable; nextEvent: EventEmitter; previousEvent: EventEmitter; constructor(userSandbox: UserSandbox, formBuilder: FormBuilder, globalSandbox: GlobalSandbox); selectVaccinationCenter(): void; autoFill(): void; onPersonalSubmit(): void; onPractitionerSubmit(): void; onDocumentSubmit(): void; previous(): void; }