import { IInfotextTransferOutputDto } from "../../domain/InfotextInterfaces";
import { JISInfotextsModel } from "../../../../schema-definitions/jis/models/JISInfotextsModel";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
export declare class JISInfotextTransferTransformation extends AbstractTransformation<JISInfotextsModel, IInfotextTransferOutputDto> {
    name: string;
    protected transformInternal: (infotext: JISInfotextsModel) => {
        display_type: import("../../domain/InfotextDisplayTypeEnum").InfotextDisplayType;
        text: string;
        text_en: string | null;
    };
}
