export declare class RouteInfo { private routes; constructor(routes: any); toArray(): Array; toDictionary(): { [endpoint: string]: { controller: string; args: string[]; }; }; toString(): string; } export interface Route { controller: string; endpoints: any[]; }