interface DataPoint { label: string; value: number; } interface Props { data: DataPoint[]; height?: number; color?: string; /** Show dots at data points */ showDots?: boolean; /** Fill area under the line */ fill?: boolean; class?: string; } declare const LineChart: import("svelte").Component; type LineChart = ReturnType; export default LineChart;