import { Request, Response } from 'express'; import { HandlerContext } from './common'; interface ServiceHandler { (context: HandlerContext, options: object): boolean; } export declare abstract class Prehandler { abstract handle(req: Request, res: Response, context: HandlerContext, options: object): boolean; serviceHandle(context: HandlerContext, options: object): boolean; name: string; }