import { OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { AddressingService, LanguageService } from '../../../../services'; import { CheckoutService } from '../../../checkout/services/checkout.service'; import { FormBuilder } from '@angular/forms'; import { ToastrService } from 'ngx-toastr'; import * as i0 from "@angular/core"; export declare class EditAddressBaseComponent implements OnInit { protected activatedRoute: ActivatedRoute; protected formBuilder: FormBuilder; protected addressingService: AddressingService; protected languageService: LanguageService; protected toastr: ToastrService; protected checkoutService: CheckoutService; editAddressForm: any; addressId: number; address: any; errors: any; countries: any[]; cities: any[]; areas: any[]; language: {}; validationErrors: {}; constructor(activatedRoute: ActivatedRoute, formBuilder: FormBuilder, addressingService: AddressingService, languageService: LanguageService, toastr: ToastrService, checkoutService: CheckoutService); ngOnInit(): void; updateAddressingCities(city: any): void; selectCity(cityid: any): void; editAddress(): void; numberOnly(event: any): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }