import React, { FC, SVGAttributes } from 'react'; import { Dimensions, PointDatum, ScaleLinearOrBand } from 'eazychart-core/src/types'; export interface PointsProps extends SVGAttributes { xDomainKey: string; yDomainKey: string; r?: number; scopedSlots?: { default: ({ shapeData, scales, dimensions, }: { shapeData: PointDatum[]; scales: { xScale: ScaleLinearOrBand; yScale: ScaleLinearOrBand; }; dimensions: Dimensions; }) => React.ReactChild; }; } export declare const Points: FC;