import * as React from 'react'; import type { SeriesId } from '@mui/x-charts/internals'; export type MapShapeProps = Omit, 'ref'> & { seriesId: SeriesId; featureName: string; d: string; color: string; }; declare function MapShape(props: MapShapeProps): React.JSX.Element; declare namespace MapShape { var propTypes: any; } export { MapShape };