import { Action } from './Action'; import { Scenario } from './Scenario'; import { ActionType } from './ActionType'; import { ActionCallback } from './ActionCallback'; declare class TimerAction implements Action { name: string; description: string; type: ActionType; private duration; invokeEvenOnFail: boolean; allowFailure: boolean; constructor(name: string, desc: string | undefined, timerDefinition: any, duration?: any, invokeEvenOnFail?: any, allowFailure?: any); static fromTemplate(timerDefinition: any, template: TimerAction): TimerAction; invoke(scenario: Scenario): ActionCallback; } export { TimerAction };