interface Store {
    id: string;
    latitude: number;
    longitude: number;
}
interface coordinatesData {
    lat: number;
    lng: number;
}
type StoreArray = Store[];
declare const GoogleMap: ({ coordinates, storeCoordinates, setActiveMarker, activeMarker, mapStyles, mapIcon, }: {
    coordinates: coordinatesData;
    storeCoordinates: StoreArray;
    setActiveMarker: any;
    activeMarker: any;
    mapStyles?: any;
    mapIcon?: string;
}) => import("react/jsx-runtime").JSX.Element;
export default GoogleMap;
//# sourceMappingURL=GoogleMap.d.ts.map