import { Ref } from 'react'; import { MapContainerProps, TileLayerProps } from 'react-leaflet'; import { LatLngLiteral, Map } from 'leaflet'; import { IControlsProps } from '../shared/Controls'; import { MapWrapperProps } from '../shared/MapWrapper'; import { StaticMarkerProps } from '../shared/StaticMarker'; export type LocationViewProps = { position: LatLngLiteral; ref?: Ref; slotProps?: { mapWrapper?: MapWrapperProps; tileLayer?: TileLayerProps; marker?: Omit; controls?: Omit; }; } & Omit; declare const LocationView: (inProps: LocationViewProps) => import("react/jsx-runtime").JSX.Element; declare module '@mui/material' { interface Components { ReevolveLocationView?: { defaultProps?: Partial; }; } } export default LocationView; //# sourceMappingURL=LocationView.d.ts.map