import { RefAttributes } from 'react'; import { MarkerProps } from 'react-leaflet'; import { ButtonBaseProps, PaperProps, StackProps } from '@mui/material'; import { LatLngLiteral, Marker as LeafletMarker } from 'leaflet'; export interface IControlsProps { onChange?: (value: LatLngLiteral) => void; /** * @default true */ enableShowUserLocation?: boolean; slotProps?: { root?: StackProps; paper?: PaperProps; button?: Omit; userLocationMarker?: Omit & RefAttributes>; }; } declare const Controls: ({ onChange, enableShowUserLocation, slotProps }: IControlsProps) => import("react/jsx-runtime").JSX.Element; export default Controls; //# sourceMappingURL=Controls.d.ts.map