import express from 'express'; export abstract class BaseResponse { abstract execute(req: express.Request, res: express.Response, next: express.NextFunction): Promise; }