interface GeocodingAddress {
    latitude: number;
    longitude: number;
    formattedAddress: string;
}
export declare const getLatitudeLongitudeFromAddress: (address: string) => Promise<GeocodingAddress>;
export {};
