import { Request, Response } from 'express'; import { AuthResponse } from '../../types/auth.js'; declare abstract class AuthModule { abstract authenticate(req: Request, res: Response): Promise; } export { AuthModule };