import { Location } from '@hebcal/core/dist/esm/location'; import type { StringMap } from './common'; export declare const countryNames: StringMap; /** * Location information */ export type LocationPlainObj = { title?: string | null; city?: string | null; tzid?: string; latitude?: number; longitude?: number; cc?: string; country?: string; admin1?: string; asciiname?: string; geo?: string; zip?: string; state?: string; stateName?: string; geonameid?: number; }; /** * Converts a @hebcal/core `Location` to a plain JS object. */ export declare function locationToPlainObj(location: Location | undefined): LocationPlainObj;