import { BmbyEntity } from "./BmbyEntity"; import { CustomerReaction } from "../Enumerations"; import { Property } from "./Property"; export declare class CustomerProperty extends BmbyEntity { private _property; constructor(); data: any; agencyBrokerId: string; customerId: string; propertyId: string; recommendedByBroker: boolean; signedContract: boolean; creationTime: Date; customerReaction: CustomerReaction; visited: CustomerReaction; reactionTime: Date; property: Property; }