interface ProfileType {
  full_name: string;
  email: string;
  phone_no: string;
  profile_pic: string;
  profile_pic_thumb: string;
}

export type { ProfileType };
