import { Type } from '@nestjs/common'; export interface RouteTree { path: string; module?: Type; children?: Routes | Type[]; } export declare type Routes = RouteTree[];