import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core'; import { FormBuilder } from '@angular/forms'; import { DataService, GetStockLocationDetailDocument, NotificationService, StockLocationDetailFragment, TypedBaseDetailComponent } from '@vendure/admin-ui/core'; import * as i0 from "@angular/core"; export declare const GET_STOCK_LOCATION_DETAIL: import("apollo-angular").TypedDocumentNode; export declare const CREATE_STOCK_LOCATION: import("apollo-angular").TypedDocumentNode; export declare const UPDATE_STOCK_LOCATION: import("apollo-angular").TypedDocumentNode; export declare class StockLocationDetailComponent 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; description: import("@angular/forms").FormControl; customFields: import("@angular/forms").FormGroup<{ [x: string]: import("@angular/forms").FormControl<{} | null>; }>; }>; constructor(changeDetector: ChangeDetectorRef, dataService: DataService, formBuilder: FormBuilder, notificationService: NotificationService); ngOnInit(): void; ngOnDestroy(): void; create(): void; save(): void; /** * Update the form values when the entity changes. */ protected setFormValues(entity: StockLocationDetailFragment): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }