import { JSX } from "react";

export interface Agent {
  id: number;
  imageUrl: string;
  name: string;
  type: string;
  location: string;
  verified?: boolean;
  socialIcons: JSX.Element[];
}
