// @ts-expect-error Optional dependency
import type { Express } from "express";
/**
 * Calling this function will setup rate limiting and user blocking for the provided Express app.
 * Attacks will still be blocked by Zen if you do not call this function.
 * Execute this function as early as possible in your Express app, but after the middleware that sets the user.
 */
export declare function addExpressMiddleware(app: Express): void;
