import type { PublicProperty } from "../../hooks/useProperties"; import { type UnitTerminology } from "./unitTerminology"; import type { LeadImagePlaceholderMap } from "./types"; interface PropertyAvailability { count: number; min_rent: number | null; } interface MarketplacePropertyCardProps { property: PublicProperty; availability: PropertyAvailability; href: string; onNavigate: (href: string) => void; imageLayout?: "split" | "full"; imagePriority?: boolean; unitTerminology?: UnitTerminology; leadImagePlaceholders?: LeadImagePlaceholderMap | null; className?: string; } export declare const MarketplacePropertyCard: import("react").NamedExoticComponent; export {}; //# sourceMappingURL=MarketplacePropertyCard.d.ts.map