export interface MultiLineSeries { id: string; label: string; color?: string; values: number[]; } interface MultiLineChartProps { series?: MultiLineSeries[]; labels?: string[]; height?: number; smooth?: boolean; showGrid?: boolean; interactive?: boolean; yMin?: number; yMax?: number; class?: string; } declare const MultiLineChart: import("svelte").Component; type MultiLineChart = ReturnType; export default MultiLineChart;