import type { Commodity, DealType, SortOption } from './constants'

export interface ListingFilter {
  category?: string
  dealType?: DealType
  commodity?: Commodity
  stage?: string
  country?: string
  priceMin?: number
  priceMax?: number
  surfaceMin?: number
  surfaceMax?: number
  verifiedOnly: boolean
  sort: SortOption
}
