import type React from "react";
export type SparklinesSpotsProps = {
    size?: number;
    spotColors?: {
        [key: string]: string;
    };
    style?: React.CSSProperties;
};
export default function SparklinesSpots(props: SparklinesSpotsProps): import("react/jsx-runtime").JSX.Element;
