import type { RadarContextResponse, Location } from '../types'; /** @internal context API — use {@link Radar.getContext} instead */ declare class ContextAPI { /** * get context (geofences, place, region) for a location * @param location - coordinates to get context for * @returns geofences, place, country, state, DMA, and postal code */ static getContext(location: Location): Promise; } export default ContextAPI;