import { IRuntimeAction } from '../../IRuntimeAction';
import { ITimerRuntime } from '../../ITimerRuntime';
import { IRuntimeEvent } from '../../IRuntimeEvent';
export declare class IdleStatementAction implements IRuntimeAction {
    constructor();
    name: string;
    apply(runtime: ITimerRuntime): IRuntimeEvent[];
}
