import { Router } from 'express'; import { Route } from './Route'; interface IControllerProps { path: string; } export declare class Controller { private props; children: Route[]; readonly path: string; router: Router; constructor(props: IControllerProps, children: Route[]); private handleRoutes; } export {};