import { MatchingRoute } from "./models"; /** * The getRoute function is a utility function that is used to determine * the correct route (or endpoint) to execute given a specific HTTP method and URL path. * * The \_\_ROUTES\_\_ object is constructed by the @api decorator and is a map like this: * * ``` * { * GET: { * '/users': 'getUsers', * '/users/:id': 'getUser' * }, * POST: { * '/users': 'createUser' * }, * ... * } * ``` * * @param controller * @param httpMethod * @param path */ export declare function getRoute(controller: any, httpMethod: string, path: string): MatchingRoute;