interface Props { id: string; coordinates: [number, number][]; color?: string; width?: number; opacity?: number; } declare const Line: import("svelte").Component; type Line = ReturnType; export default Line;