/**
 * It is used to decorate class which interact with api request
 * @description It takes base path ""
 * @author Inbaithi107
 */
declare function Controller(): ClassDecorator;
/**
 *
 * @param basePath The path used to map request to the controller
 * @description It is used to map controller with path
 * @author Inbaithi107
 */
declare function Controller(basePath: string): ClassDecorator;

export { Controller };
