import type e from "express"; import type { Response } from "express"; import type { AuthRequest, AuthResponse } from "prostgles-types"; import type { AuthHandler } from "../AuthHandler"; export type LoginResponse = AuthResponse.OAuthRegisterSuccess | AuthResponse.OAuthRegisterFailure | AuthResponse.PasswordLoginFailure | AuthResponse.MagicLinkAuthFailure | AuthResponse.MagicLinkAuthSuccess | AuthResponse.CodeVerificationFailure; export type LoginResponseHandler = Response; export declare function setLoginRequestHandler(this: AuthHandler, app: e.Express): void; export declare const parseLoginData: (bodyData: any) => [string, undefined] | [undefined, AuthRequest.LoginData]; //# sourceMappingURL=setLoginRequestHandler.d.ts.map