import type { Vec2 } from '../../../math'; import type { SVGAttributes } from 'svelte/elements'; import { type TweenOptions } from 'svelte/motion'; type $$ComponentProps = Omit, `origin` | `points`> & { points: readonly Vec2[]; origin: Vec2; line_color?: string; line_width?: number; area_color?: string; area_stroke?: string | null; line_tween?: TweenOptions; line_dash?: string; }; declare const Line: import("svelte").Component<$$ComponentProps, {}, "">; type Line = ReturnType; export default Line;