import type { SxProps } from '@mui/material'; import React from 'react'; interface GeoJSONTextFieldProps { geoJSON: GeoJSON.FeatureCollection; onChangeGeoJSON?: (geoJSON: GeoJSON.FeatureCollection) => void; title?: string; sx?: SxProps; maxRows?: number; } declare const GeoJSONTextField: React.FC; export default GeoJSONTextField;