/// import Fastify from 'fastify'; import { ServerResponse, IncomingMessage } from 'http'; import { Route } from "../../../components/router/Route"; import { RouteModel } from "../../../components/router/RouteModel"; declare class LoginAction extends Route { private static RootLogin; constructor(); get route(): RouteModel; process(request: Fastify.FastifyRequest, reply: Fastify.FastifyReply): Promise; private static login; } export { LoginAction };