import { JMAHierarchyEntry } from './data/jma-hierarchy'; /** * Resolves JMA weather area info for a given latitude and longitude. * Queries the class20s PBF tile (1 HTTP request) then derives all parent info * from the bundled hierarchy map (built from JMA area.json). * * @param lat - Latitude * @param lon - Longitude * @returns Full JMAHierarchyEntry with office/class10/class15/class20, or null if outside coverage */ declare const latLonToJMACode: (lat: number, lon: number) => Promise; export { latLonToJMACode, JMAHierarchyEntry };