import type { PublicProperty } from "../hooks/useProperties"; import type { EditableNodeAttributes } from "../types"; interface PropertyCardProps extends EditableNodeAttributes { property?: PublicProperty | null; /** * Link target template. Placeholders: {id}, {slug}, {name}, {city}, {state}. * Use an absolute URL (https://…) to link to a property's own website. */ hrefPattern?: string; /** Authored route slug resolved for this property. */ slug?: string; className?: string; } export declare function buildPropertyHref(pattern: string, property: PublicProperty, slug?: string): string; export declare function PropertyCard({ property, hrefPattern, slug, className, "data-node-id": dataNodeId, }: PropertyCardProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=PropertyCard.d.ts.map