import { ExecutionResult, StepExecutionContext } from "../models"; import { StepBody } from "../abstractions"; export declare class WaitFor extends StepBody { eventName: string; eventKey: string; effectiveDate: Date; eventData: any; run(context: StepExecutionContext): Promise; }