import { FC, CSSProperties } from "react"; import { Point } from "./types"; export interface SparklinesLineProps { color?: string; data?: number[]; height?: number; margin?: number; onMouseMove?: (e: string, n: number, p: Point) => void; points?: Point[]; style?: CSSProperties; width?: number; } declare const SparklinesLine: FC; export default SparklinesLine;