import { IJISEventCustomFormatDto } from "../../../helpers/jis/interfaces/IJISEventCustomFormatDto";
import { JISEventsModel } from "../../../schema-definitions/jis/models/JISEventsModel";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
export declare class JISEventsCustomFormatTransformation extends AbstractTransformation<JISEventsModel, IJISEventCustomFormatDto> {
    name: string;
    protected transformInternal: (event: JISEventsModel) => IJISEventCustomFormatDto;
    private effectsToTranslation;
}
