/** Decorator to register a method as a middleware function */ export declare function MiddlewareD(): (targetClass: any, // The class where the method is decorated propertyKey: string, // The name of the method descriptor: PropertyDescriptor) => void;