import { type CSSProperties } from "react";
export type SparklinesLineProps = {
    color?: string;
    style?: CSSProperties;
    tooltips?: boolean;
    onMouseMove?: (type: string, data: number, point: {
        x: number;
        y: number;
    }) => void;
};
export default function SparklinesLine(props: SparklinesLineProps): import("react/jsx-runtime").JSX.Element;
