import { TranslateService } from '@ngx-translate/core'; import { GridColumnInterface } from '../../../../models/grid-column.interface'; import { ShowQtySettings } from './product-data-grid.component'; declare class ProductDataGridComponentHelpers { static generateGoodsGridFields(goodsActionType: string, translate: TranslateService, showStockQty: ShowQtySettings): GridColumnInterface[]; static generateBatchGridFields(goodsActionType: string): GridColumnInterface[]; static generatePackageGridFields(goodsActionType: string): GridColumnInterface[]; } export default ProductDataGridComponentHelpers;