import type { PropertyTypeOption } from '../types';

export const propertyTypes: PropertyTypeOption[] = [
  {
    value: 'House',
    label: 'House',
  },
  {
    value: 'Apartment',
    label: 'Apartment',
  },
  {
    value: 'Condo',
    label: 'Condo',
  },
  {
    value: 'Townhouse',
    label: 'Townhouse',
  },
  {
    value: 'Villa',
    label: 'Villa',
  },
];
