import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core'; import { FormBuilder } from '@angular/forms'; import { CustomerGroup, DataService, GetTaxRateDetailDocument, LanguageCode, NotificationService, Permission, TaxCategoryFragment, TaxRateFragment, TypedBaseDetailComponent } from '@vendure/admin-ui/core'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare const GET_TAX_RATE_DETAIL: import("apollo-angular").TypedDocumentNode; export declare class TaxRateDetailComponent extends TypedBaseDetailComponent implements OnInit, OnDestroy { private changeDetector; protected dataService: DataService; private formBuilder; private notificationService; customFields: import("@vendure/admin-ui/core").CustomFieldConfig[]; detailForm: import("@angular/forms").FormGroup<{ name: import("@angular/forms").FormControl; enabled: import("@angular/forms").FormControl; value: import("@angular/forms").FormControl; taxCategoryId: import("@angular/forms").FormControl; zoneId: import("@angular/forms").FormControl; customerGroupId: import("@angular/forms").FormControl; customFields: import("@angular/forms").FormGroup<{ [x: string]: import("@angular/forms").FormControl<{} | null>; }>; }>; taxCategories$: Observable; groups$: Observable; readonly updatePermission: Permission[]; constructor(changeDetector: ChangeDetectorRef, dataService: DataService, formBuilder: FormBuilder, notificationService: NotificationService); ngOnInit(): void; ngOnDestroy(): void; saveButtonEnabled(): boolean; create(): void; save(): void; /** * Update the form values when the entity changes. */ protected setFormValues(entity: TaxRateFragment, languageCode: LanguageCode): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }