import "reflect-metadata/Reflect";
import { HttpMethod } from "../common";
/**
 * Route Decorator to define routes in controller
 * @param httpMethod HttpMethod of api
 * @param route route string for api method
 */
export declare function Route(httpMethod: HttpMethod, route?: string): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => void;
