import type { PublicProperty } from "../../hooks/useProperties"; import { type UnitDateFormat } from "./formatters"; import type { LeadImagePlaceholderMap, PublicUnit } from "./types"; export { FULL_CARD_IMAGE_SIZES, SPLIT_CARD_IMAGE_SIZES, } from "./marketplaceImageSizing"; interface MarketplaceUnitCardProps { unit: PublicUnit; property?: PublicProperty; dateFormat?: UnitDateFormat; showSpecials?: boolean; onOpen?: () => void; href?: string | null; onUnitOpen?: (unit: PublicUnit, href: string | null) => void; imageLayout?: "split" | "full"; imagePriority?: boolean; leadImagePlaceholders?: LeadImagePlaceholderMap | null; className?: string; } export declare const MarketplaceUnitCard: import("react").NamedExoticComponent; //# sourceMappingURL=MarketplaceUnitCard.d.ts.map