import { JsonObject } from '../../../types';
export interface GetPropertyByPropertyIdParams {
    propertyIds: string[];
    attributes?: string[];
    limit?: number;
    includeGeometry?: boolean;
}
export interface PropertyEntity {
    id: string;
    uprn?: string;
    address?: string;
    location?: {
        lat: number;
        long: number;
    };
    geometry?: object;
    status: string;
    metadata: JsonObject | null;
}
export interface PropertyResponse {
    result: PropertyEntity[];
    success: boolean;
}
export declare function getProperty(params: GetPropertyByPropertyIdParams): Promise<PropertyResponse>;
