import { ConfigService } from '@edirect/config'; import { NestMiddleware } from '@nestjs/common'; import { Request, Response } from 'express'; import { AuthService } from './auth.service'; export declare class AuthMiddleware implements NestMiddleware { private readonly configService; private readonly authService; constructor(configService: ConfigService, authService: AuthService); use(req: Request, res: Response, next: () => void): Promise; } //# sourceMappingURL=auth.middleware.d.ts.map