import React from 'react'; import { SxProps, Theme } from '@mui/material/styles'; import 'leaflet/dist/leaflet.css'; import 'leaflet-draw'; import 'leaflet-draw/dist/leaflet.draw.css'; import { GeometryFieldType, LayerConfig } from '../../../@types'; export declare const DEFAULT_LAYERS: LayerConfig[]; interface MapGeometryPickerProps { geometry: GeometryFieldType; value: string; label?: string; onChange: (geoJSON: string | null) => void; error?: boolean; helperText?: string; sx?: SxProps; height?: number; } export default function MapGeometryPicker({ geometry, value, label, onChange, error, helperText, sx, height, }: MapGeometryPickerProps): React.JSX.Element; export {}; //# sourceMappingURL=MapGeometryPicker.d.ts.map