import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core'; import { FormArray, FormGroup } from '@angular/forms'; import { Permission, ProductWithVariants } from '@ishop/admin-ui/core'; import { SelectedAssets } from '../product-detail/product-detail.component'; export declare class ProductVariantsTableComponent implements OnInit, OnDestroy { private changeDetector; formArray: FormArray; variants: ProductWithVariants.Variants[]; channelPriceIncludesTax: boolean; optionGroups: ProductWithVariants.OptionGroups[]; pendingAssetChanges: { [variantId: string]: SelectedAssets; }; formGroupMap: Map; readonly updatePermission: Permission[]; private subscription; constructor(changeDetector: ChangeDetectorRef); ngOnInit(): void; ngOnDestroy(): void; getFeaturedAsset(variant: ProductWithVariants.Variants): ({ __typename?: "Asset" | undefined; } & { __typename?: "Asset" | undefined; } & Pick & { focalPoint?: ({ __typename?: "Coordinate" | undefined; } & Pick) | null | undefined; }) | null | undefined; optionGroupName(optionGroupId: string): string | undefined; private buildFormGroupMap; }