export interface Options {
    dataset?: string;
}
export interface Point {
    latitude: number;
    longitude: number;
}
export interface GeoRecord extends Point {
    name: string;
    countryCode: string;
}
export interface LookupResult {
    record: GeoRecord;
    distance: number;
}
