import { ITimerRuntime } from '../../ITimerRuntime';
import { IRuntimeBlock } from '../../IRuntimeBlock';
import { LeafNodeAction } from './base/LeafNodeAction';
/**
 * Action that pushes the next action for the current block
 */
export declare class PushNextAction extends LeafNodeAction {
    name: string;
    /**
     * Apply the next action to a specific block
     *
     * @param runtime The timer runtime
     * @param block The block to apply the action to
     */ protected applyBlock(runtime: ITimerRuntime, block: IRuntimeBlock): void;
}
