import * as React from 'react'; interface MarkerClusterProps { children: React.ReactNode; } declare function MarkerCluster(props: MarkerClusterProps): JSX.Element | null; export default MarkerCluster;