/** * Calculates the Parallax correction for a planet (mainly Moon). * Converts Geocentric coordinates to Topocentric coordinates. */ export declare function calculateParallax(geoLon: number, geoLat: number, distanceAU: number, obsLat: number, lst: number, obl: number): { lon: number; lat: number; };