import { IUser } from "../user/user"; export interface IAuthPayload { success: boolean; message: string; token: string; user: IUser; }