import { IRuntimeAction } from '../../IRuntimeAction';
import { OutputEvent } from '../../OutputEvent';
import { ITimerRuntime } from '../../ITimerRuntime';
import { IRuntimeEvent } from '../../IRuntimeEvent';
import { Subject } from 'rxjs';
/**
 * Action to notify the runtime of a stopped event
 */
export declare class NotifyRuntimeAction implements IRuntimeAction {
    event: IRuntimeEvent;
    constructor(event: IRuntimeEvent);
    name: string;
    apply(_runtime: ITimerRuntime, input: Subject<IRuntimeEvent>, _output: Subject<OutputEvent>): void;
}
