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