import { FunctionComponent } from 'react';

  interface Props {
    size?: number;
    color?: string;
    className?: string;
    children?: JSX.Element;
    [props: string]: any;
  }

  declare const GraphScatterPlotIcon: FunctionComponent<Props>;

  export default GraphScatterPlotIcon;