import { Router } from "express"; import { BuildControllerOptions } from "../types"; /** * Given a controller class, construct an express router that represents it. * @param klass Must extend BaseController! */ export default function buildController(klass: any, options?: BuildControllerOptions): Router;