import { Handler } from "../../Request"; import { User } from "./interfaces"; export declare const loginUser: Handler; export declare const loginUserAction: (email: string, password: string) => Promise<{ userId: string; token: string; refreshToken: string; email: string; } | undefined>; export declare const checkUser: (email: string, password: string) => Promise; //# sourceMappingURL=loginUser.d.ts.map