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