import { IModule } from "../types"; import { Controller } from "./controller"; import { Repository } from "./repository"; export declare class Module implements IModule { name: string; controllers: Controller[]; repositories: Repository[]; migrationsPath: string; seedsPath: string; constructor(name: string, controllers?: Controller[], repositories?: Repository[], migrationsPath?: string, seedsPath?: string); }