import { FunctionComponent } from 'react'; interface Props { size?: number; color?: string; className?: string; children?: JSX.Element; [props: string]: any; } declare const ClusteringIcon: FunctionComponent; export default ClusteringIcon;