import { Context } from "../context/index"; import Step from "./Step"; import Action from "./Action"; export default class LogicStep extends Step { beforeAction?: typeof Action; builderAction?: typeof Action; afterAction?: typeof Action; constructor(id: string); execute(context: Context): Promise; }