import React, { ReactNode } from 'react' interface MarkerProps { id: string className?: string children: ReactNode } const Marker = ({ id, className, children }: MarkerProps) => ( {children} ) interface MarkerDefinitionsProps { id: string color: string } export function MarkerDefinition({ color, id }: MarkerDefinitionsProps) { return ( ) }