import type { MapProps } from '../../Map'; import type { LarkMapProps } from '../../types'; import type { Marker, MarkerData, Polyline } from '../../types/map'; declare const formatMapStyle: (props: MapProps) => LarkMapProps; declare const DefaultMarkerStyle: { width: number; anchorX: number; anchorY: number; label: { content: string; color: string; fontSize: number; borderRadius: number; bgColor: string; padding: number; }; iconPath: string; }; declare const formatMakerStyle: (data: MarkerData[], markerStyle?: Partial) => { label: { content: string; color: string; fontSize: number; borderRadius: number; bgColor: string; padding: number; }; id: string; width: number; height?: number | undefined; alpha?: number | undefined; latitude: number; longitude: number; iconPath: string; anchorX: number; anchorY: number; }[]; declare const DefaultPolylineStyle: { width: number; color: string; dottedLine: boolean; zIndex: number; }; declare const formatPolylineStyle: (data: Polyline[], polylineStyle?: Partial) => any[]; export { DefaultMarkerStyle, DefaultPolylineStyle, formatMakerStyle, formatMapStyle, formatPolylineStyle, };