import type { Seller } from "./seller/Seller" export type DealDraft = { title: string description?: string url: string price?: number imageUrl: string images?: File[] // max 5 seller: Seller customCompany?: string }