import { type SparklinesProps } from "../Sparklines";
export declare const dataToPoints: ({ data, limit, width, height, margin, max, min, }: Omit<SparklinesProps, "children">) => {
    x: number;
    y: number;
}[];
