import { IV4InfotextTransferOutputDto } from "../../domain/InfotextInterfaces";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
import { IJISInfotextDto } from "../../../../schema-definitions/jis/redis/interfaces/IJISInfotextDto";
export declare class JISInfotextCacheTransferTransformation extends AbstractTransformation<IJISInfotextDto, IV4InfotextTransferOutputDto> {
    name: string;
    protected transformInternal: (infotext: IJISInfotextDto) => {
        display_type: import("../../domain/InfotextDisplayTypeEnum").InfotextDisplayType;
        text: {
            cs: string;
            en: string | null;
        };
    };
}
