export type UserRole = "peserta" | "organizer" | "petugas" | "administrator";

export interface AuthUser {
  id: number;
  name: string;
  email: string;
  phone: string | null;
  date_of_birth: string | null;
  avatar_url: string | null;
  role: UserRole;
  status: "active" | "suspended";
  email_verified_at: string | null;
  created_at: string;
}
