import { MapOptions } from "./types"; /** * Get a static map image * @param options Map display options * @returns URL to the static map image */ export declare function getStaticMapUrl(options: MapOptions): string; /** * Get a static map image and return it as base64-encoded data * @param options Map display options * @returns Promise resolving to the image as base64-encoded data */ export declare function getStaticMapImage(options: MapOptions): Promise<{ base64: string; contentType: string; }>;