declare const Sparkline: import("svelte").Component<{
    data?: any[];
    width?: number;
    height?: number;
    margin?: Record<string, any>;
    color?: string;
    showArea?: boolean;
    showPoints?: boolean;
    showLastPoint?: boolean;
    curve?: string;
    strokeWidth?: number;
    animate?: boolean;
}, {}, "">;
type Sparkline = ReturnType<typeof Sparkline>;
export default Sparkline;
//# sourceMappingURL=Sparkline.svelte.d.ts.map