export declare abstract class WorkflowStep { abstract run(input: TInput): Promise; abstract wait(): Promise; }