import React from 'react'; import { MapProps } from '../map'; /** * SimpleMap - Simplified wrapper for common map use cases. * * @description * Use this component when you need a basic map without advanced configuration. * For complex scenarios (custom polygons, circles, event handlers), use `` directly. * * @ai-rules * 1. Always provide `center={{ lat, lng }}` — the map will not render without a center point. * 2. Use `showMarker={false}` for view-only maps (no interactive pin). * 3. For multiple markers or route rendering, use `` directly instead. */ export interface SimpleMapProps extends Omit { /** Address or location name to display in the marker info window */ address?: string; /** Title displayed on the map marker */ markerTitle?: string; /** Additional info shown in the marker InfoWindow */ markerInfo?: string; /** Whether to render a marker at the center coordinate */ showMarker?: boolean; } export declare const SimpleMap: React.ForwardRefExoticComponent>; /** * USAGE EXAMPLES: * * 1. Simple Map with Marker: * ```tsx * * ``` * * 2. Map Without Marker (view only): * ```tsx * * ``` * * 3. Store Location Map: * ```tsx * * ``` */