export declare enum InterceptorTypes { /** * Simple notification interceptor, reports certain event * occurance and requires no data to be captured or measured. */ NOTIFICATION = "notify", /** * Duration interceptor, measures and reports runtime of decorated method. */ DURATION = "duration", /** * Captures specified in paramCaptureConfig parameter of decorated method. */ CAPTURE_PARAM = "captureParam" } declare const interceptorTypesMapping: Map; declare const asyncInterceptorTypesMapping: Map; export { interceptorTypesMapping, asyncInterceptorTypesMapping }; //# sourceMappingURL=config.d.ts.map