/**
 * Adds a delay to trigger received events
 *
 *
 *
 */
import { TypedEventNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
declare class DelayEventParamsConfig extends NodeParamsConfig {
    /** @param delay before dispatching (in milliseconds) */
    delay: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>;
}
export declare class DelayEventNode extends TypedEventNode<DelayEventParamsConfig> {
    paramsConfig: DelayEventParamsConfig;
    static type(): string;
    initializeNode(): void;
    private _process_input;
}
export {};
