import type { PublicUnit } from "./types"; import { type UnitTerminology } from "./unitTerminology"; interface UnitDetailPanelProps { unitId: string; propertyId?: string; contactName?: string; contactPhone?: string; contactEmail?: string; showContactForm?: boolean; contactConsentCompanyName?: string; unitTerminology?: UnitTerminology; onClose: () => void; onUnitNavigate?: (unit: PublicUnit) => void; onPropertyNavigate?: () => void; } export declare function UnitDetailPanel({ unitId, propertyId, contactName, contactPhone, contactEmail, showContactForm, contactConsentCompanyName, unitTerminology, onClose, onUnitNavigate, onPropertyNavigate, }: UnitDetailPanelProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=UnitDetailPanel.d.ts.map