import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation"; import { IPreCsvInput } from "../../schema-definitions/datasources/interfaces/IPreCsvInput"; import { IPreEanMeasurement } from "../../schema-definitions/datasources/commodity-providers/IPreEanMeasurement"; export declare class PreCsvInputTransformation extends AbstractTransformation { name: string; protected transformInternal: (data: IPreCsvInput[]) => IPreEanMeasurement; private getEan; }