import { IRuntimeAction } from '../../IRuntimeAction';
import { ITimerRuntime } from '../../ITimerRuntime';
import { IRuntimeEvent } from '../../IRuntimeEvent';
import { EventHandler } from '../EventHandler';
export declare class PushActionEvent implements IRuntimeEvent {
    action: IRuntimeAction;
    constructor(action: IRuntimeAction);
    timestamp: Date;
    name: string;
}
export declare class PushActionHandler extends EventHandler {
    protected eventType: string;
    protected handleEvent(event: IRuntimeEvent, _runtime: ITimerRuntime): IRuntimeAction[];
}
