import { Theme } from '@mui/material'; /** * Obtain svg string for google-maps marker * @param theme - Skoda Flow theme, can be obtained from useTheme() hook * @param marker - type of marker */ export declare const googleMapsMarkerIcon: (theme: Theme, marker?: "selected" | "unselected") => { url: string; scaledSize: { width: number; height: number; }; anchor: { x: number; y: number; }; }; /** * Obtain legacy json style for google-maps * @param theme - Skoda Flow theme, can be obtained from useTheme() hook */ export declare const googleMapsStyle: (theme: Theme) => ({ elementType: string; stylers: ({ color: string; visibility?: undefined; } | { visibility: string; color?: undefined; })[]; featureType?: undefined; } | { featureType: string; stylers: ({ color: string; visibility?: undefined; } | { visibility: string; color?: undefined; })[]; elementType?: undefined; } | { featureType: string; elementType: string; stylers: ({ color: string; saturation?: undefined; visibility?: undefined; } | { saturation: number; color?: undefined; visibility?: undefined; } | { visibility: string; color?: undefined; saturation?: undefined; })[]; })[];