import { AwilixContainer } from 'awilix'; import { Response, NextFunction } from 'express'; /** * Express middleware factory that will create and attach * a scope onto a content. * * @param {AwilixContainer} container * @return {Function} */ export declare function scopePerRequest(container: AwilixContainer): (req: any, res: Response, next: NextFunction) => void;