import { ChangeDetectorRef } from "@angular/core"; import { ShippingMethodItem } from "../../interfaces/interfaces"; import { ApiService } from '../../services/api.service'; import { DialogService } from 'primeng/dynamicdialog'; import { SimpleTableComponent } from "../../generals/Components"; export declare class ShippingMethodsComponent extends SimpleTableComponent { private apiServiceRef; private dialogService; private changeDetectionRef; constructor(apiServiceRef: ApiService, dialogService: DialogService, changeDetectionRef: ChangeDetectorRef); showShippingMethodEditorModal(shippingMethodItem: ShippingMethodItem): void; }