export declare type StepAction = (args: T) => (boolean | Promise); export declare class Step { title: string; action: StepAction; execute(args: T): Promise; constructor(title: string, action: StepAction); }