import { ChangeDetectorRef } from '@angular/core'; import { DialogService } from 'primeng/dynamicdialog'; import { ApiService } from '../../services/api.service'; import { SimpleTableComponent } from '../../generals/Components'; import { ProductAttribute } from '../../interfaces/interfaces'; export declare class ProductattributesComponent extends SimpleTableComponent { private dialogService; private changeDetectionRef; private apiServiceRef; showProductAttributeEditorModal(productAttribute?: ProductAttribute | null): void; showProductAttributeDeleteModal(productAttribute?: ProductAttribute | null): void; constructor(dialogService: DialogService, changeDetectionRef: ChangeDetectorRef, apiServiceRef: ApiService); }