import React from 'react'; import { List } from '../index'; import type { MapPointConfig, MapValue } from '../index'; export interface MapItemProps extends MapPointConfig { value?: Partial; } export function Item(props: MapItemProps) { return ; }