import { Map } from "../../models/shop/map/map.model";
import { Order } from "../../models";
export declare class MapHelper {
    static GenerateFullAddressFromMapInfo(info_object: Order.IAddress): string | null;
    static GetMapImage(lng: number, lat: number, zoom: number, size?: string, style_id?: 'streets-v11' | 'streets-v12' | 'dark-v11' | 'navigation-day-v1' | 'navigation-night-v1'): string | null;
    static GetMapDirectionUrl(location: Map.ILocation, travelmode?: boolean): string | null;
}
