import { FastifyReply, FastifyRequest } from "fastify"; import { ResponseBuilder } from "../../helper/responseBuilder.helper"; export default class AuthController { private readonly authService; constructor(); login(request: FastifyRequest, reply: FastifyReply): Promise; logout(request: FastifyRequest, reply: FastifyReply): Promise; me(request: FastifyRequest, reply: FastifyReply): Promise; changePassword(request: FastifyRequest, reply: FastifyReply): Promise; private setSessionCookie; private extractSid; }