import { HorizonPoint, LatLng, HighestPointOptions } from './types';
export declare function getAltitude(latLng: LatLng): Promise<number>;
export declare function highestPointInAzimuth(origin: LatLng, azimuth: number, options?: HighestPointOptions): Promise<HorizonPoint>;
