import type { HttpMethod } from 'router-tree-map'; import type { Type } from '@ingress/core'; export type RouteMetadata = { controller: Type; name: string; controllerAnnotations?: Array; methodAnnotations?: Array; parameterAnnotations?: Array; types?: { parameters?: any[]; return?: any; }; }; export type PathMap = { [key in HttpMethod]: string[]; }; /** * Given a base URL and and Route Metadata, determine the desired paths * @param route * @param baseUrl */ export declare function resolvePaths(route: RouteMetadata, baseUrl?: string): PathMap;