import { HTTPClient } from '../../../../utils/http'; import { CRUD } from '../../../../utils/crud'; import { CommunityProperty, CommunityPropertyExtended, CommunityPropertyPerson, CreateCommunityPropertyDTO, CreateCommunityPropertyPersonDTO, UpdateCommunityPropertyDTO, UpdateCommunityPropertyPersonDTO } from '../types'; import { PropertiesReservesAPI } from './reserve'; export declare class CommunitiesBlocksPropertiesAPI extends CRUD { private readonly _propertyId?; constructor(httpClient: HTTPClient, baseUrl: string, _propertyId?: string | undefined); persons(id?: string): CRUD; } export declare class CommunitiesPropertiesAPI { private readonly _httpClient; private readonly _baseUrl; private readonly _propertyId?; constructor(_httpClient: HTTPClient, _baseUrl: string, _propertyId?: string | undefined); find(query?: Record): Promise; reserves(id?: string): PropertiesReservesAPI; } //# sourceMappingURL=properties.d.ts.map