import { User } from "@/model/User"; export interface IUserService { login(email: string, password: string): User | undefined; }