import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { CustomFieldConfig, GetAvailableCountries, ModalService } from '@ishop/admin-ui/core'; export declare class AddressCardComponent implements OnInit, OnChanges { private modalService; private changeDetector; addressForm: FormGroup; customFields: CustomFieldConfig; availableCountries: GetAvailableCountries.Items[]; isDefaultBilling: string; isDefaultShipping: string; editable: boolean; setAsDefaultShipping: EventEmitter; setAsDefaultBilling: EventEmitter; private dataDependenciesPopulated; constructor(modalService: ModalService, changeDetector: ChangeDetectorRef); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; getCountryName(countryCode: string): string; setAsDefaultBillingAddress(): void; setAsDefaultShippingAddress(): void; editAddress(): void; }