import { BuildingInsights } from "../types/BuildingInsights"; import { ImageryQuality } from "../types/ImageryQuality"; import { LatLng } from "../types/LatLng"; export type FindClosestBuildingInsightsParameters = { /** * The longitude and latitude from which the API looks for the nearest known building. */ location: LatLng; /** * The minimum quality level allowed in the results. * No result with lower quality than this will be returned. * Not specifying this is equivalent to restricting to HIGH quality only. */ requiredQuality?: ImageryQuality; }; export declare function findClosestBuildingInsights(apiKeyOrProxyUrl: string | URL, query: FindClosestBuildingInsightsParameters): Promise; //# sourceMappingURL=findClosestBuildingInsights.d.ts.map