import React from 'react'; import { GridRenderEditCellParams } from '@mui/x-data-grid'; import { GeometryFieldType } from '../../@types'; interface GeoEditCellProps extends GridRenderEditCellParams { geometry: GeometryFieldType; height?: number; } export default function GeoEditCell({ id, field, api, value, geometry, height, }: GeoEditCellProps): React.JSX.Element; export {}; //# sourceMappingURL=GeoEditCell.d.ts.map