/** * Creates pre-configured middleware functions */ export declare const nehonixShield: { /** * Standard security middleware with balanced settings */ standard: (req: import("express").Request, res: import("express").Response, next: import("express").NextFunction) => Promise>>; /** * Strict security middleware with aggressive blocking */ strict: (req: import("express").Request, res: import("express").Response, next: import("express").NextFunction) => Promise>>; /** * Monitor-only mode that logs but doesn't block */ monitor: (req: import("express").Request, res: import("express").Response, next: import("express").NextFunction) => Promise>>; /** * Creates a custom middleware instance */ custom: (options?: import("./exports/EXPRESS.exports").NsbMiddlewareOptions) => (req: import("express").Request, res: import("express").Response, next: import("express").NextFunction) => Promise>>; }; //# sourceMappingURL=EXPRESS.nShield.d.ts.map