export interface GetPropertyParams {
    locationIds: string[];
    attributes?: string[];
    limit?: number;
}
export interface PropertyResponse {
    result: object[];
    success: boolean;
}
export declare function getPropertyById(params: GetPropertyParams): Promise<PropertyResponse>;
