import express from "express"; export default abstract class RouteControllerBase { app: express.Application; name: string; path: string; constructor(app: express.Application, name: string, path: string); abstract configureRoutes(): express.Application; }