import { Request, Response, NextFunction } from 'express'; export { authMiddleware, authLogin, authLogout, getAuthHashCode, setUsernamePassword, getUsernamePassword }; declare function authMiddleware(): (req: Request, res: Response, next: NextFunction) => void; declare function authLogin(req: Request, res: Response, next: NextFunction): void; declare function authLogout(req: Request, res: Response): void; declare function getAuthHashCode(): string; declare function setUsernamePassword(_credentials: { username: string; password: string; }): void; declare function getUsernamePassword(): object;