import { FastifyReply, FastifyRequest } from "fastify"; import { ResponseBuilder } from "../../helper/responseBuilder.helper"; export default class RoleManagementController { private readonly authService; constructor(); listRoles(request: FastifyRequest, reply: FastifyReply): Promise; createRole(request: FastifyRequest, reply: FastifyReply): Promise; deleteRole(request: FastifyRequest, reply: FastifyReply): Promise; listPermissions(request: FastifyRequest, reply: FastifyReply): Promise; }