/** * Enum used to define controller type */ export declare enum ControllerType { /** * Controller will use SINGLETON strategy */ SINGLETON = 0, /** * Controller will use REQUEST strategy */ REQUEST = 1 }