interface IUserJSON { id: number; email: string; full_name: string; role: string; status: string; } export default IUserJSON;