import { TypedJsNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
export declare abstract class BaseTriggerJsNode<K extends NodeParamsConfig> extends TypedJsNode<K> {
    initializeNode(): void;
}
declare class BaseTriggerJsParamsConfig extends NodeParamsConfig {
}
export declare abstract class ParamlessBaseTriggerJsNode extends BaseTriggerJsNode<BaseTriggerJsParamsConfig> {
    readonly paramsConfig: BaseTriggerJsParamsConfig;
}
export {};
