import { FC, CSSProperties } from "react"; import { Point } from "./types"; export interface SparklinesSpotsProps { points?: Point[]; width?: number; height?: number; size?: number; style?: CSSProperties; spotColors?: string[]; } declare const SparklinesSpots: FC; export default SparklinesSpots;