interface VendorType {
  name: string;
  type: string;
  phone_no: string;
  email?: string | null;
  note?: string | null;
}

export type { VendorType };
