import { AbstractDataTransformer } from "../../datatransformation/abstractDataTransformer"; import { UserDefDict } from "../../ldaccess/UserDefDict"; import { ActionKeysDict } from "./ActionDict"; import { KVL } from "../../ldaccess/KVL"; export declare const handleTypeKey = ActionKeysDict.canHandleType; export declare const handleIdKey = ActionKeysDict.canHandleId; export declare const payloadOutputKey = UserDefDict.outputData; export declare const ActionHandlerName = "ActionHandler"; export declare const ActionHandlerKeys: string[]; export declare const ActionHandlerOutputKVs: KVL[]; export declare const ActionHandlerInputKVs: KVL[]; export declare class ActionHandler extends AbstractDataTransformer { constructor(ldTkStr?: string); protected triggerRegisterIfNecessary(typeKv: KVL, idKv: KVL): void; protected mappingFunction(inputParams: Map, outputKvStores: Map): KVL[]; }