import { KVL } from "../../ldaccess/KVL"; import { AbstractDataTransformer } from "../../datatransformation/abstractDataTransformer"; export declare const ActionDispatcherName: string; export declare const ActionDispatcherKeys: string[]; export declare const ActionDispatcherOutputKVs: KVL[]; export declare class ActionDispatcher extends AbstractDataTransformer { protected previousTrigger: KVL; constructor(ldTkStr?: string); evalDirtyInput: () => void; /** * doesn't follow the regular DataTransformer-flow, but dispatches an ldAction instead */ protected refreshOutput(): void; }