import { IJISEventRouteDto, IJISEventCustomFormatDto } from "../../../helpers/jis/interfaces/IJISEventCustomFormatDto";
import { IJISEvent } from "../../../schema-definitions/jis/datasources/interfaces";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
export declare class UpdateEventWebhookTransformation extends AbstractTransformation<{
    event: IJISEvent;
    routes: IJISEventRouteDto[];
}, IJISEventCustomFormatDto & {
    deleted_timestamp: string | null;
}> {
    name: string;
    protected transformInternal: ({ event, routes, }: {
        event: IJISEvent;
        routes: IJISEventRouteDto[];
    }) => IJISEventCustomFormatDto & {
        deleted_timestamp: string | null;
    };
    private effectToTranslation;
}
