import { OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { UntypedFormGroup } from '@angular/forms'; import { CustomFieldConfig, OrderDetailFragment, ServerConfigService } from '@vendure/admin-ui/core'; import * as i0 from "@angular/core"; export declare class FulfillmentDetailComponent implements OnInit, OnChanges { private serverConfigService; fulfillmentId: string; order: OrderDetailFragment; customFieldConfig: CustomFieldConfig[]; customFieldFormGroup: UntypedFormGroup; constructor(serverConfigService: ServerConfigService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; get fulfillment(): NonNullable[number] | undefined | null; get items(): Array<{ name: string; quantity: number; }>; buildCustomFieldsFormGroup(): void; customFieldIsObject(customField: unknown): customField is object | any[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }