/// export interface MapCardsProps { features: any[]; afterChange: (id: string) => void; } export default function MapCards({ features, afterChange, }: MapCardsProps): JSX.Element;