import { NextFunction, Request, Response } from 'express';
import { HttpFirewallOptions } from './types';
export declare const httpFirewall: (options?: HttpFirewallOptions) => (req: Request, res: Response, next: NextFunction) => Promise<void>;
